X-Git-Url: http://git.tremily.us/?a=blobdiff_plain;f=test%2Fnonexistent.py;h=4a4bd6dff2a187b4b4836b761c253905aa269165;hb=f27ed063be6a4703b3306a091ce7d5ed328eba98;hp=892a5cbf4992807b886383694497559120d99995;hpb=298c0efec9e614cc33ba7026277115352461428c;p=scons.git diff --git a/test/nonexistent.py b/test/nonexistent.py index 892a5cbf..4a4bd6df 100644 --- a/test/nonexistent.py +++ b/test/nonexistent.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (c) 2001 Steven Knight +# __COPYRIGHT__ # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the @@ -22,21 +22,86 @@ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # +""" +This test verifies that we fail gracefully and provide informative +messages if someone tries to build a target that hasn't been defined +or uses a nonexistent source file. +""" + __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" -import sys +import os.path +import re + import TestSCons test = TestSCons.TestSCons() -test.write('SConstruct', "") +foo_bar = os.path.join('foo', 'bar') + +test.write('SConstruct', """ +env = Environment() +env.Command("aaa.out", "aaa.in", "should never get executed") +env.Command("bbb.out", "bbb.in", "should never get executed") +File('xxx') +Dir('ddd') +""") test.run(arguments = 'foo', - stderr = "scons: *** Do not know how to make target `foo'. Stop.\n") + stderr = "scons: \\*\\*\\* Do not know how to make File target `foo' \\(.*foo\\).( *Stop.)?\n", + status = 2, + match=TestSCons.match_re_dotall) test.run(arguments = '-k foo/bar foo', - stderr = """scons: *** Do not know how to make target `foo/bar'. -scons: *** Do not know how to make target `foo'. + stderr = "scons: \\*\\*\\* Do not know how to make File target `%s' \\(.*foo.bar\\).\n" % re.escape(foo_bar), + status = 2, + match=TestSCons.match_re_dotall) + +test.run(arguments = "aaa.out", + stderr = "scons: *** [aaa.out] Source `aaa.in' not found, needed by target `aaa.out'.\n", + status = 2) + +test.run(arguments = "-k bbb.out aaa.out", + stderr = """scons: *** [bbb.out] Source `bbb.in' not found, needed by target `bbb.out'. +scons: *** [aaa.out] Source `aaa.in' not found, needed by target `aaa.out'. +""", + status = 2) + +test.run(arguments = '-k aaa.in bbb.in', + stderr = """scons: \\*\\*\\* Do not know how to make File target `aaa.in' \\(.*aaa.in\\). +scons: \\*\\*\\* Do not know how to make File target `bbb.in' \\(.*bbb.in\\). +""", + status = 2, + match=TestSCons.match_re_dotall) + + +test.run(arguments = 'xxx', + stderr = "scons: \\*\\*\\* Do not know how to make File target `xxx' \\(.*xxx\\).( *Stop.)?\n", + status = 2, + match=TestSCons.match_re_dotall) + +test.run(arguments = 'ddd') + + +# Make sure that SCons doesn't print up-to-date messages for non-derived files that exist: +test.write('SConstruct', """ +File('xxx') """) +test.write('xxx', "xxx") + +test.run(arguments='xxx', stdout=test.wrap_stdout("""\ +scons: Nothing to be done for `xxx'. +""")) + +test.run(arguments='xxx', stdout=test.wrap_stdout("""\ +scons: Nothing to be done for `xxx'. +""")) + test.pass_test() + +# Local Variables: +# tab-width:4 +# indent-tabs-mode:nil +# End: +# vim: set expandtab tabstop=4 shiftwidth=4: