summaryrefslogtreecommitdiff
path: root/test/runtest/print_time.py
diff options
context:
space:
mode:
authordirkbaechle <devnull@localhost>2012-08-09 23:56:44 +0200
committerdirkbaechle <devnull@localhost>2012-08-09 23:56:44 +0200
commite3315f2f0cf58faada5c8c6b42f03fefe0608ec8 (patch)
tree5696b9fa594e2b3a56161afede1ebcd92ee5c1e0 /test/runtest/print_time.py
parentf1554cc0d7e4b41e9186adf85adc708e4ae6cfb8 (diff)
downloadscons-e3315f2f0cf58faada5c8c6b42f03fefe0608ec8.tar.gz
- renamed the '-j' option to '-k', such that we can use the former for parallel processing later on
- changed list(map()) to list comprehensions - removed try/except block around os.environ.get() for SCONS_EXTERNAL_TEST - fixed a potential deadlock for subprocess.Popen by using temporary files - added the '--nopipefiles' option to switch off this temp file fix (not recommended though)
Diffstat (limited to 'test/runtest/print_time.py')
-rw-r--r--test/runtest/print_time.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtest/print_time.py b/test/runtest/print_time.py
index dfce2738..244c6f8e 100644
--- a/test/runtest/print_time.py
+++ b/test/runtest/print_time.py
@@ -75,7 +75,7 @@ NO RESULT TEST STDERR
PASSING TEST STDERR
"""
-test.run(arguments='-j -t test',
+test.run(arguments='-k -t test',
status=1,
stdout=expect_stdout,
stderr=expect_stderr)