Handle scanning of the in-memory entries for a Dir with a scanner, not a hard-coded...
[scons.git] / test / option / taskmastertrace.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 Simple tests of the --taskmastertrace= option.
29 """
30
31 import TestSCons
32
33 test = TestSCons.TestSCons()
34
35 test.write('SConstruct', """
36 env = Environment()
37 env.Command('file.out', 'file.mid', Copy('$TARGET', '$SOURCE'))
38 env.Command('file.mid', 'file.in', Copy('$TARGET', '$SOURCE'))
39 """)
40
41 test.write('file.in', "file.in\n")
42
43 expect_stdout = test.wrap_stdout("""\
44 Taskmaster: '.': children:
45     ['SConstruct', 'file.in', 'file.mid', 'file.out']
46     waiting on unstarted children:
47     ['file.mid', 'file.out']
48 Taskmaster: 'file.mid': children:
49     ['file.in']
50     evaluating
51 Copy("file.mid", "file.in")
52 Taskmaster: 'file.out': children:
53     ['file.mid']
54     evaluating
55 Copy("file.out", "file.mid")
56 Taskmaster: '.': children:
57     ['SConstruct', 'file.in', 'file.mid', 'file.out']
58     evaluating
59 """)
60
61 test.run(arguments='--taskmastertrace=- .', stdout=expect_stdout)
62
63
64
65 test.run(arguments='-c .')
66
67
68
69 expect_stdout = test.wrap_stdout("""\
70 Copy("file.mid", "file.in")
71 Copy("file.out", "file.mid")
72 """)
73
74 test.run(arguments='--taskmastertrace=trace.out .', stdout=expect_stdout)
75
76 expect_trace = """\
77 Taskmaster: '.': children:
78     ['SConstruct', 'file.in', 'file.mid', 'file.out']
79     waiting on unstarted children:
80     ['file.mid', 'file.out']
81 Taskmaster: 'file.mid': children:
82     ['file.in']
83     evaluating
84 Taskmaster: 'file.out': children:
85     ['file.mid']
86     evaluating
87 Taskmaster: '.': children:
88     ['SConstruct', 'file.in', 'file.mid', 'file.out']
89     evaluating
90 """
91
92 test.must_match('trace.out', expect_trace)
93
94 test.pass_test()