summaryrefslogtreecommitdiff
path: root/test/option-q.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/option-q.py')
-rw-r--r--test/option-q.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/option-q.py b/test/option-q.py
index 703b7cbc..41197c44 100644
--- a/test/option-q.py
+++ b/test/option-q.py
@@ -2,22 +2,20 @@
__revision__ = "test/option-q.py __REVISION__ __DATE__ __DEVELOPER__"
-import TestCmd
+import TestSCons
import string
import sys
-test = TestCmd.TestCmd(program = 'scons.py',
- workdir = '',
- interpreter = 'python')
+test = TestSCons.TestSCons()
test.write('SConstruct', "")
-test.run(chdir = '.', arguments = '-q')
+test.run(arguments = '-q')
test.fail_test(test.stderr() !=
"Warning: the -q option is not yet implemented\n")
-test.run(chdir = '.', arguments = '--question')
+test.run(arguments = '--question')
test.fail_test(test.stderr() !=
"Warning: the --question option is not yet implemented\n")