Merged revisions 2454-2525 via svnmerge from
[scons.git] / test / sconsign / script / Configure.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 Verify that we can print .sconsign files with Configure context
29 info in them (which have different BuildInfo entries).
30 """
31
32 import os.path
33 import re
34
35 import TestSCons
36 import TestSConsign
37
38 _obj = TestSCons._obj
39
40 test = TestSConsign.TestSConsign(match = TestSConsign.match_re)
41
42 CC = test.detect('CC', norm=1)
43 CC_dir, CC_file = os.path.split(CC)
44 CC_dir = re.escape(os.path.normcase(CC_dir))
45 CC_file = re.escape(CC_file)
46
47 # Note:  We don't use os.path.join() representations of the file names
48 # in the expected output because paths in the .sconsign files are
49 # canonicalized to use / as the separator.
50
51 _sconf_temp_conftest_0_c = '.sconf_temp/conftest_0.c'
52
53 test.write('SConstruct', """
54 env = Environment()
55 import os
56 env.AppendENVPath('PATH', os.environ['PATH'])
57 conf = Configure(env)
58 r1 = conf.CheckCHeader( 'math.h' )
59 env = conf.Finish()
60 """)
61
62 test.run(arguments = '.')
63
64 sig_re = r'[0-9a-fA-F]{32}'
65 date_re = r'\S+ \S+ [ \d]\d \d\d:\d\d:\d\d \d\d\d\d'
66
67 # Note:  There's a space at the end of the '.*': line, because the
68 # Value node being printed actually begins with a newline.  It would
69 # probably be good to change that to a repr() of the contents.
70 expect = r"""=== .:
71 SConstruct: None \d+ \d+
72 === .sconf_temp:
73 conftest_0.c:
74         '.*': 
75 #include "math.h"
76
77
78         %(sig_re)s \[.*\]
79 conftest_0%(_obj)s:
80         %(_sconf_temp_conftest_0_c)s: %(sig_re)s \d+ \d+
81         %(CC)s: %(sig_re)s \d+ \d+
82         %(sig_re)s \[.*\]
83 === %(CC_dir)s:
84 %(CC_file)s: %(sig_re)s \d+ \d+
85 """ % locals()
86
87 test.run_sconsign(arguments = ".sconsign",
88                   stdout = expect)
89
90 test.pass_test()