Issue 1059: Fix the -n option when VariantDir(duplicate=1) is used
[scons.git] / test / VariantDir / no-execute.py
1
2 #!/usr/bin/env python
3 #
4 # __COPYRIGHT__
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining
7 # a copy of this software and associated documentation files (the
8 # "Software"), to deal in the Software without restriction, including
9 # without limitation the rights to use, copy, modify, merge, publish,
10 # distribute, sublicense, and/or sell copies of the Software, and to
11 # permit persons to whom the Software is furnished to do so, subject to
12 # the following conditions:
13 #
14 # The above copyright notice and this permission notice shall be included
15 # in all copies or substantial portions of the Software.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
18 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
19 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
20 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
21 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
22 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
23 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 #
25
26 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
27
28 """
29 Verify that use of a VariantDir works when the -n option is used (and
30 the VariantDir, therefore, isn't actually created) when both duplicate=0
31 and duplicate=1 are used.
32 """
33
34 import os
35
36 import TestSCons
37
38 test = TestSCons.TestSCons()
39
40 a_file_in = os.path.join('a', 'file.in')
41 build0_a_file_out = os.path.join('build0', 'a', 'file.out')
42 build1_file_out = os.path.join('build1', 'file.out')
43 build1_file_in = os.path.join('build1', 'file.in')
44
45 test.subdir('a')
46
47 test.write('SConstruct', """\
48 env = Environment()
49 Export('env')
50 env.SConscript('SConscript',
51                exported=['env'],
52                variant_dir='build0',
53                duplicate=0)
54 env.SConscript('a/SConscript',
55                exported=['env'],
56                variant_dir='build1',
57                duplicate=1)
58 """)
59
60 test.write('SConscript', """\
61 Import(['env'])
62 env.SConscript('a/SConscript', exports=['env'], duplicate=0)
63 """)
64
65 test.write(['a', 'SConscript'], """\
66 Import(['env'])
67 env.Command('file.out', 'file.in', Copy('$TARGET', '$SOURCE'))
68 """)
69
70 test.write(['a', 'file.in'], "a/file.in\n")
71
72 expect = """\
73 scons: building associated VariantDir targets: build0
74 Copy("%(build0_a_file_out)s", "%(a_file_in)s")
75 Copy("%(build1_file_out)s", "%(build1_file_in)s")
76 """ % locals()
77
78 test.run(arguments = '-Q -n', stdout=expect)
79
80 test.must_not_exist('build0')
81 test.must_not_exist('build1')
82
83 # Sanity check that the right thing happens when we *do* build it, just
84 # to make sure that the expected -n behavior above isn't a side effect
85 # of doing something wrong without -n.
86 test.run()
87
88 test.must_match(['build0', 'a', 'file.out'], "a/file.in\n")
89 test.must_match(['build1', 'file.out'], "a/file.in\n")
90
91 test.pass_test()
92
93 # Local Variables:
94 # tab-width:4
95 # indent-tabs-mode:nil
96 # End:
97 # vim: set expandtab tabstop=4 shiftwidth=4: