From f4b5ccd3fdacad36cb124245591ea5bfaf4de12e Mon Sep 17 00:00:00 2001 From: Steven Knight Date: Fri, 14 Sep 2001 03:10:30 +0000 Subject: Add a test for -- terminating option processing. --- test/option--.py | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 test/option--.py diff --git a/test/option--.py b/test/option--.py new file mode 100644 index 0000000..41f9b0f --- /dev/null +++ b/test/option--.py @@ -0,0 +1,39 @@ +#!/usr/bin/env python + +__revision__ = "test/option-n.py __REVISION__ __DATE__ __DEVELOPER__" + +import TestCmd +import os.path +import string +import sys + +test = TestCmd.TestCmd(program = 'scons.py', + workdir = '', + interpreter = 'python') + +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') +""") + +expect = "python build.py -f1.out\npython build.py -f2.out\n" + +test.run(chdir = '.', arguments = '-- -f1.out -f2.out') + +test.fail_test(test.stdout() != expect) +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() + -- cgit v0.12