summaryrefslogtreecommitdiff
path: root/test/option-s.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2001-09-11 13:19:48 +0000
committerSteven Knight <knight@baldmt.com>2001-09-11 13:19:48 +0000
commitd9fa9439a4424fce36654c68b39e6866cba502c9 (patch)
tree90cf1ba513b52811be3d541862817e96d091eaa3 /test/option-s.py
parent1be774d4845c05bacaecf93eec506ceb038ad8d8 (diff)
downloadscons-d9fa9439a4424fce36654c68b39e6866cba502c9.tar.gz
Add -n and -s support.
Diffstat (limited to 'test/option-s.py')
-rw-r--r--test/option-s.py46
1 files changed, 36 insertions, 10 deletions
diff --git a/test/option-s.py b/test/option-s.py
index 9f5e20bc..66d92c79 100644
--- a/test/option-s.py
+++ b/test/option-s.py
@@ -3,6 +3,7 @@
__revision__ = "test/option-s.py __REVISION__ __DATE__ __DEVELOPER__"
import TestCmd
+import os.path
import string
import sys
@@ -10,22 +11,47 @@ test = TestCmd.TestCmd(program = 'scons.py',
workdir = '',
interpreter = 'python')
-test.write('SConstruct', "")
+test.write('build.py', r"""
+import sys
+file = open(sys.argv[1], 'w')
+file.write("build.py: %s\n" % sys.argv[1])
+file.close()
+""")
+
+test.write('SConstruct', """
+MyBuild = Builder(name = "MyBuild",
+ action = "python build.py %(target)s")
+env = Environment(BUILDERS = [MyBuild])
+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.fail_test(test.stdout() != "")
+test.fail_test(test.stderr() != "")
+test.fail_test(not os.path.exists(test.workpath('f1.out')))
+test.fail_test(not os.path.exists(test.workpath('f2.out')))
-test.run(chdir = '.', arguments = '-s')
+os.unlink(test.workpath('f1.out'))
+os.unlink(test.workpath('f2.out'))
-test.fail_test(test.stderr() !=
- "Warning: the -s option is not yet implemented\n")
+test.run(chdir = '.', arguments = '--silent f1.out f2.out')
-test.run(chdir = '.', arguments = '--silent')
+test.fail_test(test.stdout() != "")
+test.fail_test(test.stderr() != "")
+test.fail_test(not os.path.exists(test.workpath('f1.out')))
+test.fail_test(not os.path.exists(test.workpath('f2.out')))
-test.fail_test(test.stderr() !=
- "Warning: the --silent option is not yet implemented\n")
+os.unlink(test.workpath('f1.out'))
+os.unlink(test.workpath('f2.out'))
-test.run(chdir = '.', arguments = '--quiet')
+test.run(chdir = '.', arguments = '--quiet f1.out f2.out')
-test.fail_test(test.stderr() !=
- "Warning: the --quiet option is not yet implemented\n")
+test.fail_test(test.stdout() != "")
+test.fail_test(test.stderr() != "")
+test.fail_test(not os.path.exists(test.workpath('f1.out')))
+test.fail_test(not os.path.exists(test.workpath('f2.out')))
test.pass_test()