summaryrefslogtreecommitdiff
path: root/test/option-e.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/option-e.py')
-rw-r--r--test/option-e.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/test/option-e.py b/test/option-e.py
index 9a3be5f5..db2b1954 100644
--- a/test/option-e.py
+++ b/test/option-e.py
@@ -2,22 +2,20 @@
__revision__ = "test/option-e.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 = '-e')
+test.run(arguments = '-e')
test.fail_test(test.stderr() !=
"Warning: the -e option is not yet implemented\n")
-test.run(chdir = '.', arguments = '--environment-overrides')
+test.run(arguments = '--environment-overrides')
test.fail_test(test.stderr() !=
"Warning: the --environment-overrides option is not yet implemented\n")