http://scons.tigris.org/issues/show_bug.cgi?id=2345
[scons.git] / test / GetBuildFailures / option-k.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 """
26 Verify that a failed build action with -j works as expected.
27 """
28
29 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
30
31 import TestSCons
32
33 _python_ = TestSCons._python_
34
35 try:
36     import threading
37 except ImportError:
38     # if threads are not supported, then
39     # there is nothing to test
40     TestCmd.no_result()
41     sys.exit()
42
43
44 test = TestSCons.TestSCons()
45
46 contents = r"""\
47 import sys
48 if sys.argv[0] == 'mypass.py':
49     open(sys.argv[3], 'wb').write(open(sys.argv[4], 'rb').read())
50     exit_value = 0
51 elif sys.argv[0] == 'myfail.py':
52     exit_value = 1
53 sys.exit(exit_value)
54 """
55
56 test.write('mypass.py', contents)
57 test.write('myfail.py', contents)
58
59 test.write('SConstruct', """\
60 Command('f3', 'f3.in', r'@%(_python_)s mypass.py -  f3 $TARGET $SOURCE')
61 Command('f4', 'f4.in', r'@%(_python_)s myfail.py f3 f4 $TARGET $SOURCE')
62 Command('f5', 'f5.in', r'@%(_python_)s myfail.py f4 f5 $TARGET $SOURCE')
63 Command('f6', 'f6.in', r'@%(_python_)s mypass.py f5 -  $TARGET $SOURCE')
64
65 def print_build_failures():
66     from SCons.Script import GetBuildFailures
67     for bf in sorted(GetBuildFailures(), key=lambda a: a.filename):
68         print "%%s failed:  %%s" %% (bf.node, bf.errstr)
69
70 try:
71     import atexit
72 except ImportError:
73     import sys
74     sys.exitfunc = print_build_failures
75 else:
76     atexit.register(print_build_failures)
77 """ % locals())
78
79 test.write('f3.in', "f3.in\n")
80 test.write('f4.in', "f4.in\n")
81 test.write('f5.in', "f5.in\n")
82 test.write('f6.in', "f6.in\n")
83
84 expect_stdout = """\
85 scons: Reading SConscript files ...
86 scons: done reading SConscript files.
87 scons: Building targets ...
88 scons: done building targets (errors occurred during build).
89 f4 failed:  Error 1
90 f5 failed:  Error 1
91 """ % locals()
92
93 expect_stderr = """\
94 scons: *** [f4] Error 1
95 scons: *** [f5] Error 1
96 """
97
98 test.run(arguments = '-k .',
99          status = 2,
100          stdout = expect_stdout,
101          stderr = expect_stderr)
102
103 test.must_match(test.workpath('f3'), 'f3.in\n')
104 test.must_not_exist(test.workpath('f4'))
105 test.must_not_exist(test.workpath('f5'))
106 test.must_match(test.workpath('f6'), 'f6.in\n') 
107
108
109
110 test.pass_test()
111
112 # Local Variables:
113 # tab-width:4
114 # indent-tabs-mode:nil
115 # End:
116 # vim: set expandtab tabstop=4 shiftwidth=4: