94bd5cbee6ca8067be92dd142e71b4e71bf8fb4a
[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).
31 """
32
33 import os
34
35 import TestSCons
36
37 test = TestSCons.TestSCons()
38
39 test.subdir('a')
40
41 test.write('SConstruct', """\
42 env = Environment()
43 Export('env')
44 env.SConscript('SConscript', exported=['env'], variant_dir='build', duplicate=0)
45 """)
46
47 test.write('SConscript', """\
48 Import(['env'])
49 env.SConscript('a/SConscript', exports=['env'], duplicate=0)
50 """)
51
52 test.write(['a', 'SConscript'], """\
53 Import(['env'])
54 env.Command('file.out', 'file.in', Copy('$TARGET', '$SOURCE'))
55 """)
56
57 test.write(['a', 'file.in'], "a/file.in\n")
58
59 expect = """\
60 scons: building associated VariantDir targets: build
61 Copy("%s", "%s")
62 """ % (os.path.join('build', 'a', 'file.out'),
63        os.path.join('a', 'file.in'))
64
65 test.run(arguments = '-Q -n', stdout=expect)
66
67 test.pass_test()
68
69 # Local Variables:
70 # tab-width:4
71 # indent-tabs-mode:nil
72 # End:
73 # vim: set expandtab tabstop=4 shiftwidth=4: