summaryrefslogtreecommitdiffstats
path: root/test/option-s.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-09-15 13:46:11 (GMT)
committerSteven Knight <knight@baldmt.com>2001-09-15 13:46:11 (GMT)
commitfcd916513a1ad10e13479d4d604f239f7ea45c73 (patch)
tree4ddf60867e13b0ba12f5b37c6a4eaebc9a08ebaa /test/option-s.py
parentf4b5ccd3fdacad36cb124245591ea5bfaf4de12e (diff)
downloadSCons-fcd916513a1ad10e13479d4d604f239f7ea45c73.zip
SCons-fcd916513a1ad10e13479d4d604f239f7ea45c73.tar.gz
SCons-fcd916513a1ad10e13479d4d604f239f7ea45c73.tar.bz2
Add a TestSCons module for common initialization of SCons tests.
Diffstat (limited to 'test/option-s.py')
-rw-r--r--test/option-s.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/test/option-s.py b/test/option-s.py
index 66d92c7..4fdcafb 100644
--- a/test/option-s.py
+++ b/test/option-s.py
@@ -2,14 +2,12 @@
__revision__ = "test/option-s.py __REVISION__ __DATE__ __DEVELOPER__"
-import TestCmd
+import TestSCons
import os.path
import string
import sys
-test = TestCmd.TestCmd(program = 'scons.py',
- workdir = '',
- interpreter = 'python')
+test = TestSCons.TestSCons()
test.write('build.py', r"""
import sys
@@ -26,7 +24,7 @@ env.MyBuild(target = 'f1.out', source = 'f1.in')
env.MyBuild(target = 'f2.out', source = 'f2.in')
""")
-test.run(chdir = '.', arguments = '-s f1.out f2.out')
+test.run(arguments = '-s f1.out f2.out')
test.fail_test(test.stdout() != "")
test.fail_test(test.stderr() != "")
@@ -36,7 +34,7 @@ test.fail_test(not os.path.exists(test.workpath('f2.out')))
os.unlink(test.workpath('f1.out'))
os.unlink(test.workpath('f2.out'))
-test.run(chdir = '.', arguments = '--silent f1.out f2.out')
+test.run(arguments = '--silent f1.out f2.out')
test.fail_test(test.stdout() != "")
test.fail_test(test.stderr() != "")
@@ -46,7 +44,7 @@ test.fail_test(not os.path.exists(test.workpath('f2.out')))
os.unlink(test.workpath('f1.out'))
os.unlink(test.workpath('f2.out'))
-test.run(chdir = '.', arguments = '--quiet f1.out f2.out')
+test.run(arguments = '--quiet f1.out f2.out')
test.fail_test(test.stdout() != "")
test.fail_test(test.stderr() != "")