Merged revisions 2527-2645 via svnmerge from
[scons.git] / test / Deprecated / debug-stree.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 that the --debug=stree option prints a dependency tree with output
29 that indicates the state of various Node status flags.
30 """
31
32 import TestSCons
33 import sys
34 import string
35 import re
36 import time
37
38 test = TestSCons.TestSCons(match = TestSCons.match_re_dotall)
39
40 CC = test.detect('CC')
41 LINK = test.detect('LINK')
42 if LINK is None: LINK = CC
43
44 test.write('SConstruct', """
45 env = Environment(OBJSUFFIX = '.ooo', PROGSUFFIX = '.xxx')
46 env.Program('foo', Split('foo.c bar.c'))
47 """)
48
49 test.write('foo.c', r"""
50 #include <stdio.h>
51 #include <stdlib.h>
52 #include "foo.h"
53 int main(int argc, char *argv[])
54 {
55         argv[argc++] = "--";
56         printf("f1.c\n");
57         exit (0);
58 }
59 """)
60
61 test.write('bar.c', """
62 #include "bar.h"
63 int local = 1;
64 """)
65
66 test.write('foo.h', """
67 #ifndef FOO_H
68 #define FOO_H
69 #include "bar.h"
70 #endif
71 """)
72
73 test.write('bar.h', """
74 #ifndef BAR_H
75 #define BAR_H
76 #include "foo.h"
77 #endif
78 """)
79
80 expect = """
81 scons: warning: The --debug=stree option is deprecated; please use --tree=all,status instead.
82 """
83
84 stderr = TestSCons.re_escape(expect) + TestSCons.file_expr
85
86 stree = """
87 [E B   C  ]+-foo.xxx
88 [E B   C  ]  +-foo.ooo
89 [E     C  ]  | +-foo.c
90 [E     C  ]  | +-foo.h
91 [E     C  ]  | +-bar.h
92 [E     C  ]  | +-%(CC)s
93 [E B   C  ]  +-bar.ooo
94 [E     C  ]  | +-bar.c
95 [E     C  ]  | +-bar.h
96 [E     C  ]  | +-foo.h
97 [E     C  ]  | +-%(CC)s
98 [E     C  ]  +-%(LINK)s
99 """ % locals()
100
101 test.run(arguments = "--debug=stree foo.xxx",
102          stderr = stderr)
103 test.fail_test(string.find(test.stdout(), stree) == -1)
104
105 stree2 = """
106  E         = exists
107   R        = exists in repository only
108    b       = implicit builder
109    B       = explicit builder
110     S      = side effect
111      P     = precious
112       A    = always build
113        C   = current
114         N  = no clean
115          H = no cache
116
117 [  B      ]+-foo.xxx
118 [  B      ]  +-foo.ooo
119 [E     C  ]  | +-foo.c
120 [E     C  ]  | +-foo.h
121 [E     C  ]  | +-bar.h
122 [E     C  ]  | +-%(CC)s
123 [  B      ]  +-bar.ooo
124 [E     C  ]  | +-bar.c
125 [E     C  ]  | +-bar.h
126 [E     C  ]  | +-foo.h
127 [E     C  ]  | +-%(CC)s
128 [E     C  ]  +-%(LINK)s
129 """ % locals()
130
131 test.run(arguments = '-c foo.xxx')
132
133 test.run(arguments = "--no-exec --debug=stree foo.xxx",
134          stderr = stderr)
135 test.fail_test(string.find(test.stdout(), stree2) == -1)
136
137 test.pass_test()