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:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
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.
26 This test verifies that we fail gracefully and provide informative
27 messages if someone tries to build a target that hasn't been defined
28 or uses a nonexistent source file.
31 __revision__
= "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
38 test
= TestSCons
.TestSCons()
40 foo_bar
= os
.path
.join('foo', 'bar')
42 test
.write('SConstruct', """
44 env.Command("aaa.out", "aaa.in", "should never get executed")
45 env.Command("bbb.out", "bbb.in", "should never get executed")
50 test
.run(arguments
= 'foo',
51 stderr
= "scons: \\*\\*\\* Do not know how to make File target `foo' \\(.*foo\\).( *Stop.)?\n",
53 match
=TestSCons
.match_re_dotall
)
55 test
.run(arguments
= '-k foo/bar foo',
56 stderr
= "scons: \\*\\*\\* Do not know how to make File target `%s' \\(.*foo.bar\\).\n" % re
.escape(foo_bar
),
58 match
=TestSCons
.match_re_dotall
)
60 test
.run(arguments
= "aaa.out",
61 stderr
= "scons: *** [aaa.out] Source `aaa.in' not found, needed by target `aaa.out'.\n",
64 test
.run(arguments
= "-k bbb.out aaa.out",
65 stderr
= """scons: *** [bbb.out] Source `bbb.in' not found, needed by target `bbb.out'.
66 scons: *** [aaa.out] Source `aaa.in' not found, needed by target `aaa.out'.
70 test
.run(arguments
= '-k aaa.in bbb.in',
71 stderr
= """scons: \\*\\*\\* Do not know how to make File target `aaa.in' \\(.*aaa.in\\).
72 scons: \\*\\*\\* Do not know how to make File target `bbb.in' \\(.*bbb.in\\).
75 match
=TestSCons
.match_re_dotall
)
78 test
.run(arguments
= 'xxx',
79 stderr
= "scons: \\*\\*\\* Do not know how to make File target `xxx' \\(.*xxx\\).( *Stop.)?\n",
81 match
=TestSCons
.match_re_dotall
)
83 test
.run(arguments
= 'ddd')
86 # Make sure that SCons doesn't print up-to-date messages for non-derived files that exist:
87 test
.write('SConstruct', """
91 test
.write('xxx', "xxx")
93 test
.run(arguments
='xxx', stdout
=test
.wrap_stdout("""\
94 scons: Nothing to be done for `xxx'.
97 test
.run(arguments
='xxx', stdout
=test
.wrap_stdout("""\
98 scons: Nothing to be done for `xxx'.
105 # indent-tabs-mode:nil
107 # vim: set expandtab tabstop=4 shiftwidth=4: