Issue 2265: Add additional --taskmastertrace= messages in the Task class.
[scons.git] / test / option / tree-lib.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 Make sure that --tree=derived output with a library dependency shows
29 the dependency on the library.  (On earlier versions of the Microsoft
30 toolchain this wouldn't show up unless the library already existed
31 on disk.)
32
33 Issue 1363:  http://scons.tigris.org/issues/show_bug.cgi?id=1363
34 """
35
36 import string
37 import sys
38
39 import TestSCons
40
41 test = TestSCons.TestSCons()
42
43 test.write('SConstruct', """
44 env = Environment(LIBPREFIX='',
45                   LIBSUFFIX='.lib',
46                   OBJSUFFIX='.obj',
47                   EXESUFFIX='.exe')
48 env.AppendENVPath('PATH', '.')
49 l = env.Library( 'util.lib', 'util.c' )
50 p = env.Program( 'test_tree_lib.exe', 'main.c', LIBS=l )
51 env.Command( 'foo.h', p, '$SOURCE > $TARGET')
52 """)
53
54 test.write('main.c', """\
55 #include <stdlib.h>
56 #include <stdio.h>
57 int
58 main(int argc, char *argv)
59 {
60     printf("#define     FOO_H   \\"foo.h\\"\\n");
61     return (0);
62 }
63 """)
64
65 test.write('util.c', """\
66 void
67 util(void)
68 {
69     ;
70 }
71 """)
72
73 expect = """
74   +-test_tree_lib.exe
75     +-main.obj
76     +-util.lib
77       +-util.obj
78 """
79
80 test.run(arguments = '--tree=derived foo.h')
81 if string.find(test.stdout(), expect) == -1:
82     sys.stdout.write('Did not find expected tree in the following output:\n')
83     sys.stdout.write(test.stdout())
84     test.fail_test()
85
86 test.up_to_date(arguments = 'foo.h')
87
88 test.pass_test()