diff options
author | dirkbaechle <dl9obn@darc.de> | 2015-04-05 10:19:20 (GMT) |
---|---|---|
committer | dirkbaechle <dl9obn@darc.de> | 2015-04-05 10:19:20 (GMT) |
commit | a4f78759590bdc29e518292b76e51de4b7f97d51 (patch) | |
tree | 1f7b9712478baac619af7ef11567b3d4c0980041 | |
parent | 079dcc3b635370801480d7f51fbc13ef8d628e8c (diff) | |
parent | 458243d778741340ae33bf92672595c3db08b3f4 (diff) | |
download | SCons-a4f78759590bdc29e518292b76e51de4b7f97d51.zip SCons-a4f78759590bdc29e518292b76e51de4b7f97d51.tar.gz SCons-a4f78759590bdc29e518292b76e51de4b7f97d51.tar.bz2 |
Merged in williamblevins/scons_20150323 (pull request #229)
Updated debug-count test case.
-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() |