added release.txt blurb. Fixed spelling typo in Defaults.xml
[scons.git] / test / option / option--.py
blobdbfb3c92ffc9a385085e3140d8c97113437a5ccb
1 #!/usr/bin/env python
3 # MIT License
5 # Copyright The SCons Foundation
7 # Permission is hereby granted, free of charge, to any person obtaining
8 # a copy of this software and associated documentation files (the
9 # "Software"), to deal in the Software without restriction, including
10 # without limitation the rights to use, copy, modify, merge, publish,
11 # distribute, sublicense, and/or sell copies of the Software, and to
12 # permit persons to whom the Software is furnished to do so, subject to
13 # the following conditions:
15 # The above copyright notice and this permission notice shall be included
16 # in all copies or substantial portions of the Software.
18 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
19 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
20 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 import os.path
28 import TestSCons
30 _python_ = TestSCons._python_
32 test = TestSCons.TestSCons()
34 test.write('build.py', r"""
35 import sys
37 with open(sys.argv[1], 'w') as file:
38 file.write("build.py: %s\n" % sys.argv[1])
39 sys.exit(0)
40 """)
42 test.write('SConstruct', """
43 MyBuild = Builder(action=r'%(_python_)s build.py $TARGETS')
44 env = Environment(BUILDERS={'MyBuild': MyBuild})
45 env.MyBuild(target='-f1.out', source='f1.in')
46 env.MyBuild(target='-f2.out', source='f2.in')
47 """ % locals())
49 test.write('f1.in', "f1.in\n")
50 test.write('f2.in', "f2.in\n")
52 expect = test.wrap_stdout('%(_python_)s build.py -f1.out\n%(_python_)s build.py -f2.out\n' % locals())
54 test.run(arguments='-- -f1.out -f2.out', stdout=expect)
56 test.fail_test(not os.path.exists(test.workpath('-f1.out')))
57 test.fail_test(not os.path.exists(test.workpath('-f2.out')))
59 test.pass_test()
61 # Local Variables:
62 # tab-width:4
63 # indent-tabs-mode:nil
64 # End:
65 # vim: set expandtab tabstop=4 shiftwidth=4: