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.
27 Test use of the COMMAND_LINE_TARGETS and DEFAULT_TARGETS variables.
32 test
= TestSCons
.TestSCons()
36 test
.write('SConstruct', """
37 print(COMMAND_LINE_TARGETS)
38 print(list(map(str, BUILD_TARGETS)))
40 print(COMMAND_LINE_TARGETS)
41 print(list(map(str, BUILD_TARGETS)))
44 test
.write('aaa', 'aaa\n')
45 test
.write('bbb', 'bbb\n')
47 expect
= test
.wrap_stdout(read_str
= "[]\n[]\n[]\n['.']\n",
48 build_str
= "scons: `.' is up to date.\n")
49 test
.run(stdout
= expect
)
51 expect
= test
.wrap_stdout(read_str
= "['.']\n['.']\n['.']\n['.']\n",
52 build_str
= "scons: `.' is up to date.\n")
53 test
.run(arguments
= '.', stdout
= expect
)
55 expect
= test
.wrap_stdout(read_str
= "['aaa']\n['aaa']\n['aaa']\n['aaa']\n",
56 build_str
= "scons: Nothing to be done for `aaa'.\n")
57 test
.run(arguments
= 'aaa', stdout
= expect
)
59 expect
= test
.wrap_stdout(read_str
= "['bbb', 'aaa']\n['bbb', 'aaa']\n['bbb', 'aaa']\n['bbb', 'aaa']\n",
61 scons: Nothing to be done for `bbb'.
62 scons: Nothing to be done for `aaa'.
64 test
.run(arguments
= 'bbb ccc=xyz -n aaa', stdout
= expect
)
68 test
.write('SConstruct', """
69 DefaultEnvironment(tools=[]) # test speedup
71 print(list(map(str, DEFAULT_TARGETS)))
72 print(list(map(str, BUILD_TARGETS)))
74 print(list(map(str, DEFAULT_TARGETS)))
75 print(list(map(str, BUILD_TARGETS)))
77 print(list(map(str, DEFAULT_TARGETS)))
78 print(list(map(str, BUILD_TARGETS)))
80 print(list(map(str, DEFAULT_TARGETS)))
81 print(list(map(str, BUILD_TARGETS)))
85 test
.write('ccc', "ccc\n")
87 expect
= test
.wrap_stdout(build_str
= "scons: Nothing to be done for `ccc'.\n",
98 test
.run(stdout
= expect
)
100 expect
= test
.wrap_stdout(build_str
= "scons: `.' is up to date.\n",
111 test
.run(arguments
= '.', stdout
= expect
)
115 test
.write('SConstruct', """\
116 print(list(map(str, BUILD_TARGETS)))
117 SConscript('SConscript')
118 print(list(map(str, BUILD_TARGETS)))
121 test
.write('SConscript', """\
122 BUILD_TARGETS.append('sconscript_target')
125 test
.write('command_line_target', "command_line_target\n")
126 test
.write('sconscript_target', "sconscript_target\n")
128 expect
= test
.wrap_stdout(read_str
= """\
129 ['command_line_target']
130 ['command_line_target', 'sconscript_target']
133 scons: Nothing to be done for `command_line_target'.
134 scons: Nothing to be done for `sconscript_target'.
136 test
.run(arguments
= 'command_line_target', stdout
= expect
)
140 # blanks in cmdline should not be treated as targets (issue 2986)
144 tgt_foo = Textfile(target="foo", source="foostuff")
145 tgt_bar = Textfile(target="bar", source="bartuff")
149 test
.run(arguments
=["-Q", "-n", "''"], stdout
="Creating 'foo.txt'\n")
150 test
.run(arguments
=["-Q", "-n", ""], stdout
="Creating 'foo.txt'\n")
151 test
.run(arguments
=["-Q", "-n", '""'], stdout
="Creating 'foo.txt'\n")
159 # indent-tabs-mode:nil
161 # vim: set expandtab tabstop=4 shiftwidth=4: