summaryrefslogtreecommitdiff
path: root/test/runtest
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2012-12-21 02:02:57 +0300
committeranatoly techtonik <techtonik@gmail.com>2012-12-21 02:02:57 +0300
commit834dfac379783af524e0c834030c0280c504d203 (patch)
tree07ebe91bd7183ff4a8bb0c96c5ef81cb4b12faa7 /test/runtest
parent4cb4234dc560e19ce3cf93fd73b0a1e0d0c94077 (diff)
downloadscons-834dfac379783af524e0c834030c0280c504d203.tar.gz
Fix tests broken after --noqmtest option was removed from runtest.py
Diffstat (limited to 'test/runtest')
-rw-r--r--test/runtest/noqmtest.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtest/noqmtest.py b/test/runtest/noqmtest.py
index eb332234..cea2f116 100644
--- a/test/runtest/noqmtest.py
+++ b/test/runtest/noqmtest.py
@@ -25,7 +25,7 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
"""
-Test that the --noqmtest option invokes tests directly via Python, not
+Test that by default tests are invoked directly via Python, not
using qmtest.
"""
@@ -74,7 +74,7 @@ testlist = [
test_pass_py,
]
-test.run(arguments = '-k --noqmtest %s' % ' '.join(testlist),
+test.run(arguments = '-k %s' % ' '.join(testlist),
status = 1,
stdout = expect_stdout,
stderr = expect_stderr)