Added fix for TeX includes with same name as subdirs.
[scons.git] / test / TARGETS.py
1 #!/usr/bin/env python
2 #
3 # __COPYRIGHT__
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining
6 # a copy of this software and associated documentation files (the
7 # "Software"), to deal in the Software without restriction, including
8 # without limitation the rights to use, copy, modify, merge, publish,
9 # distribute, sublicense, and/or sell copies of the Software, and to
10 # permit persons to whom the Software is furnished to do so, subject to
11 # the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
17 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
18 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 #
24
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
26
27 """
28 Test use of the COMMAND_LINE_TARGETS and DEFAULT_TARGETS variables.
29 """
30
31 import TestSCons
32
33 test = TestSCons.TestSCons()
34
35
36
37 test.write('SConstruct', """
38 print COMMAND_LINE_TARGETS
39 print list(map(str, BUILD_TARGETS))
40 Default('.')
41 print COMMAND_LINE_TARGETS
42 print list(map(str, BUILD_TARGETS))
43 """)
44
45 test.write('aaa', 'aaa\n')
46 test.write('bbb', 'bbb\n')
47
48 expect = test.wrap_stdout(read_str = "[]\n[]\n[]\n['.']\n",
49                           build_str = "scons: `.' is up to date.\n")
50 test.run(stdout = expect)
51
52 expect = test.wrap_stdout(read_str = "['.']\n['.']\n['.']\n['.']\n",
53                           build_str = "scons: `.' is up to date.\n")
54 test.run(arguments = '.', stdout = expect)
55
56 expect = test.wrap_stdout(read_str = "['aaa']\n['aaa']\n['aaa']\n['aaa']\n",
57                           build_str = "scons: Nothing to be done for `aaa'.\n")
58 test.run(arguments = 'aaa', stdout = expect)
59
60 expect = test.wrap_stdout(read_str = "['bbb', 'aaa']\n['bbb', 'aaa']\n['bbb', 'aaa']\n['bbb', 'aaa']\n",
61                           build_str = """\
62 scons: Nothing to be done for `bbb'.
63 scons: Nothing to be done for `aaa'.
64 """)
65 test.run(arguments = 'bbb ccc=xyz -n aaa', stdout = expect)
66
67
68
69 test.write('SConstruct', """
70 env = Environment()
71 print list(map(str, DEFAULT_TARGETS))
72 print list(map(str, BUILD_TARGETS))
73 Default('aaa')
74 print list(map(str, DEFAULT_TARGETS))
75 print list(map(str, BUILD_TARGETS))
76 env.Default('bbb')
77 print list(map(str, DEFAULT_TARGETS))
78 print list(map(str, BUILD_TARGETS))
79 env.Default(None)
80 print list(map(str, DEFAULT_TARGETS))
81 print list(map(str, BUILD_TARGETS))
82 env.Default('ccc')
83 """)
84
85 test.write('ccc', "ccc\n")
86
87 expect = test.wrap_stdout(build_str = "scons: Nothing to be done for `ccc'.\n",
88                           read_str = """\
89 []
90 []
91 ['aaa']
92 ['aaa']
93 ['aaa', 'bbb']
94 ['aaa', 'bbb']
95 []
96 []
97 """)
98 test.run(stdout = expect)
99
100 expect = test.wrap_stdout(build_str = "scons: `.' is up to date.\n",
101                           read_str = """\
102 []
103 ['.']
104 ['aaa']
105 ['.']
106 ['aaa', 'bbb']
107 ['.']
108 []
109 ['.']
110 """)
111 test.run(arguments = '.', stdout = expect)
112
113
114
115 test.write('SConstruct', """\
116 print list(map(str, BUILD_TARGETS))
117 SConscript('SConscript')
118 print list(map(str, BUILD_TARGETS))
119 """)
120
121 test.write('SConscript', """\
122 BUILD_TARGETS.append('sconscript_target')
123 """)
124
125 test.write('command_line_target', "command_line_target\n")
126 test.write('sconscript_target', "sconscript_target\n")
127
128 expect = test.wrap_stdout(read_str = """\
129 ['command_line_target']
130 ['command_line_target', 'sconscript_target']
131 """,
132                           build_str = """\
133 scons: Nothing to be done for `command_line_target'.
134 scons: Nothing to be done for `sconscript_target'.
135 """)
136 test.run(arguments = 'command_line_target', stdout = expect)
137
138
139
140 test.pass_test()
141
142 # Local Variables:
143 # tab-width:4
144 # indent-tabs-mode:nil
145 # End:
146 # vim: set expandtab tabstop=4 shiftwidth=4: