diff options
author | William Blevins <wblevins@gmail.com> | 2015-03-24 02:38:49 (GMT) |
---|---|---|
committer | William Blevins <wblevins@gmail.com> | 2015-03-24 02:38:49 (GMT) |
commit | 458243d778741340ae33bf92672595c3db08b3f4 (patch) | |
tree | 02ffdd1bf3867436dfbbd73959d6c30d13ca5b93 | |
parent | b6c7bd73535753a45dec87e8bb3b8584443d40dd (diff) | |
download | SCons-458243d778741340ae33bf92672595c3db08b3f4.zip SCons-458243d778741340ae33bf92672595c3db08b3f4.tar.gz SCons-458243d778741340ae33bf92672595c3db08b3f4.tar.bz2 |
Updated debug-count test case.
Now tests against current interpreter vs default path option.
-rw-r--r-- | test/option/debug-count.py | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/test/option/debug-count.py b/test/option/debug-count.py index 3f8a23c..39c1222 100644 --- a/test/option/debug-count.py +++ b/test/option/debug-count.py @@ -28,6 +28,7 @@ Test that the --debug=count option works. """ import re +import sys import TestSCons @@ -85,11 +86,13 @@ scons: warning: --debug=count is not supported when running SCons \twith the python -O option or optimized \\(.pyo\\) modules. """ + TestSCons.file_expr -test.run(arguments = '--debug=count -h', - interpreter = ['python', '-O'], - stderr = expect_warning, - match = TestSCons.match_re) - +test.run( + arguments = '--debug=count -h', + # Test against current interpreter vs default path option. + interpreter = [ sys.executable, '-O' ], + stderr = expect_warning, + match = TestSCons.match_re +) test.pass_test() |