diff options
author | dirkbaechle <devnull@localhost> | 2012-08-03 21:45:05 (GMT) |
---|---|---|
committer | dirkbaechle <devnull@localhost> | 2012-08-03 21:45:05 (GMT) |
commit | 7356cfca325dbd31d7817d374b70158dc76f9a35 (patch) | |
tree | a06aec636934dd57fc3f2d1fe48dc01f91a4f946 /test/runtest/src.py | |
parent | 4d8c8379e1d4c7860a1c1d29b7302b394c920844 (diff) | |
download | SCons-7356cfca325dbd31d7817d374b70158dc76f9a35.zip SCons-7356cfca325dbd31d7817d374b70158dc76f9a35.tar.gz SCons-7356cfca325dbd31d7817d374b70158dc76f9a35.tar.bz2 |
- fixed usage of subprocess module in runtest.py
- fixed tests in test/runtest (needed -j option for suppressing the count/percent messages)
Diffstat (limited to 'test/runtest/src.py')
-rw-r--r-- | test/runtest/src.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtest/src.py b/test/runtest/src.py index 9136a4d..84b08a0 100644 --- a/test/runtest/src.py +++ b/test/runtest/src.py @@ -62,7 +62,7 @@ PASSING TEST STDERR PASSING TEST STDERR """ % locals() -test.run(arguments='src', stdout=expect_stdout, stderr=expect_stderr) +test.run(arguments='-j src', stdout=expect_stdout, stderr=expect_stderr) test.pass_test() |