Merge branch 'master' into jbrill-msvc-detect
[scons.git] / test / PRINT_CMD_LINE_FUNC.py
blobfaa51ace7200f1df54bec111edf10a74c997c25c
1 #!/usr/bin/env python
3 # __COPYRIGHT__
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.
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
27 """
28 Test the PRINT_CMD_LINE_FUNC construction variable.
29 """
31 import TestSCons
33 _exe = TestSCons._exe
34 _obj = TestSCons._obj
36 test = TestSCons.TestSCons(match = TestSCons.match_re)
39 test.write('SConstruct', r"""
40 import sys
41 def print_cmd_line(s, target, source, env):
42 sys.stdout.write("BUILDING %s from %s with %s\n"%
43 (str(target[0]), str(source[0]), s))
45 e = Environment(PRINT_CMD_LINE_FUNC=print_cmd_line)
46 e.Program(target = 'prog', source = 'prog.c')
47 """)
49 test.write('prog.c', r"""
50 int main(int argc, char *argv[]) { return 0; }
51 """)
53 test.run(arguments = '-Q .')
55 expected_lines = [
56 "BUILDING prog%s from prog.c with" % (_obj,),
57 "BUILDING prog%s from prog%s with" % (_exe, _obj),
60 test.must_contain_all_lines(test.stdout(), expected_lines)
62 test.run(arguments = '-c .')
64 # Just make sure it doesn't blow up when PRINT_CMD_LINE_FUNC
65 # is explicity initialized to None.
66 test.write('SConstruct', r"""
67 e = Environment(PRINT_CMD_LINE_FUNC=None)
68 e.Program(target = 'prog', source = 'prog.c')
69 """)
71 test.run(arguments = '-Q .')
73 test.pass_test()
75 # Local Variables:
76 # tab-width:4
77 # indent-tabs-mode:nil
78 # End:
79 # vim: set expandtab tabstop=4 shiftwidth=4: