Issue 2265: Add additional --taskmastertrace= messages in the Task class.
[scons.git] / test / option / debug-memory.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=memory option works.
29 """
30
31 import TestSCons
32 import sys
33 import string
34 import re
35 import time
36
37 test = TestSCons.TestSCons()
38
39 try:
40     import resource
41 except ImportError:
42     try:
43         import win32process
44         import win32api
45     except ImportError:
46         x = "Python version has no 'resource' or 'win32api/win32process' module; skipping tests.\n"
47         test.skip_test(x)
48
49
50
51 test.write('SConstruct', """
52 def cat(target, source, env):
53     open(str(target[0]), 'wb').write(open(str(source[0]), 'rb').read())
54 env = Environment(BUILDERS={'Cat':Builder(action=Action(cat))})
55 env.Cat('file.out', 'file.in')
56 """)
57
58 test.write('file.in', "file.in\n")
59
60
61
62 test.run(arguments = '--debug=memory')
63
64 lines = string.split(test.stdout(), '\n')
65
66 test.fail_test(re.match(r'Memory before reading SConscript files: +\d+', lines[-5]) is None)
67 test.fail_test(re.match(r'Memory after reading SConscript files: +\d+', lines[-4]) is None)
68 test.fail_test(re.match(r'Memory before building targets: +\d+', lines[-3]) is None)
69 test.fail_test(re.match(r'Memory after building targets: +\d+', lines[-2]) is None)
70
71
72
73 test.run(arguments = '-h --debug=memory')
74
75 lines = string.split(test.stdout(), '\n')
76
77 test.fail_test(re.match(r'Memory before reading SConscript files: +\d+', lines[-3]) is None)
78 test.fail_test(re.match(r'Memory after reading SConscript files: +\d+', lines[-2]) is None)
79
80
81
82 test.pass_test()