Win32 portability for tests.
[scons.git] / test / PRINT_CMD_LINE_FUNC.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 the PRINT_CMD_LINE_FUNC construction variable.
29 """
30
31 import string
32 import sys
33 import TestCmd
34 import TestSCons
35
36 _exe = TestSCons._exe
37 _obj = TestSCons._obj
38
39 test = TestSCons.TestSCons(match = TestCmd.match_re)
40
41
42 test.write('SConstruct', r"""
43 import sys
44 def print_cmd_line(s, target, source, env):
45     sys.stdout.write("BUILDING %s from %s with %s\n"%
46                      (str(target[0]), str(source[0]), s))
47
48 e = Environment(PRINT_CMD_LINE_FUNC=print_cmd_line)
49 e.Program(target = 'prog', source = 'prog.c')
50 """)
51
52 test.write('prog.c', r"""
53 int main(int argc, char *argv[]) { return 0; }
54 """)
55
56 test.run(arguments = '-Q .')
57
58 expected_lines = [
59     "BUILDING prog%s from prog.c with" % (_obj,),
60     "BUILDING prog%s from prog%s with" % (_exe, _obj),
61 ]
62
63 missing_lines = filter(lambda l: string.find(test.stdout(), l) == -1,
64                        expected_lines)
65 if missing_lines:
66     print "Expected the following lines in STDOUT:"
67     print "\t" + string.join(expected_lines, "\n\t")
68     print "ACTUAL STDOUT =========="
69     print test.stdout()
70     test.fail_test(1)
71
72 test.run(arguments = '-c .')
73
74 # Just make sure it doesn't blow up when PRINT_CMD_LINE_FUNC
75 # is explicity initialized to None.
76 test.write('SConstruct', r"""
77 e = Environment(PRINT_CMD_LINE_FUNC=None)
78 e.Program(target = 'prog', source = 'prog.c')
79 """)
80
81 test.run(arguments = '-Q .')
82
83 test.pass_test()