Add emacs and vim editing settings to the bottom of *.py files.
[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 sys
32 import TestCmd
33 import TestSCons
34
35 _exe = TestSCons._exe
36 _obj = TestSCons._obj
37
38 test = TestSCons.TestSCons(match = TestCmd.match_re)
39
40
41 test.write('SConstruct', r"""
42 import sys
43 def print_cmd_line(s, target, source, env):
44     sys.stdout.write("BUILDING %s from %s with %s\n"%
45                      (str(target[0]), str(source[0]), s))
46
47 e = Environment(PRINT_CMD_LINE_FUNC=print_cmd_line)
48 e.Program(target = 'prog', source = 'prog.c')
49 """)
50
51 test.write('prog.c', r"""
52 int main(int argc, char *argv[]) { return 0; }
53 """)
54
55 test.run(arguments = '-Q .')
56
57 expected_lines = [
58     "BUILDING prog%s from prog.c with" % (_obj,),
59     "BUILDING prog%s from prog%s with" % (_exe, _obj),
60 ]
61
62 test.must_contain_all_lines(test.stdout(), expected_lines)
63
64 test.run(arguments = '-c .')
65
66 # Just make sure it doesn't blow up when PRINT_CMD_LINE_FUNC
67 # is explicity initialized to None.
68 test.write('SConstruct', r"""
69 e = Environment(PRINT_CMD_LINE_FUNC=None)
70 e.Program(target = 'prog', source = 'prog.c')
71 """)
72
73 test.run(arguments = '-Q .')
74
75 test.pass_test()
76
77 # Local Variables:
78 # tab-width:4
79 # indent-tabs-mode:nil
80 # End:
81 # vim: set expandtab tabstop=4 shiftwidth=4: