summaryrefslogtreecommitdiffstats
path: root/test/runtest/noqmtest.py
diff options
context:
space:
mode:
authordirkbaechle <devnull@localhost>2012-08-09 21:56:44 (GMT)
committerdirkbaechle <devnull@localhost>2012-08-09 21:56:44 (GMT)
commit780d9ca6577e5a15b4d4cfad111b74132c255be1 (patch)
tree5696b9fa594e2b3a56161afede1ebcd92ee5c1e0 /test/runtest/noqmtest.py
parent1fea3bfcaf2ee4cbb7498426bac6b83e6c4bc1d9 (diff)
downloadSCons-780d9ca6577e5a15b4d4cfad111b74132c255be1.zip
SCons-780d9ca6577e5a15b4d4cfad111b74132c255be1.tar.gz
SCons-780d9ca6577e5a15b4d4cfad111b74132c255be1.tar.bz2
- 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/noqmtest.py')
-rw-r--r--test/runtest/noqmtest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtest/noqmtest.py b/test/runtest/noqmtest.py
index e2cb5f8..eb33223 100644
--- a/test/runtest/noqmtest.py
+++ b/test/runtest/noqmtest.py
@@ -74,7 +74,7 @@ testlist = [
test_pass_py,
]
-test.run(arguments = '-j --noqmtest %s' % ' '.join(testlist),
+test.run(arguments = '-k --noqmtest %s' % ' '.join(testlist),
status = 1,
stdout = expect_stdout,
stderr = expect_stderr)