Applied Benoit Belley's patch in ticket 1957 improve the robustness of
[scons.git] / test / Configure / cache-not-ok.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 the cache mechanism works when checks are not ok.
29 """
30
31 import os.path
32
33 import TestSCons
34
35 _exe = TestSCons._exe
36 _obj = TestSCons._obj
37
38 test = TestSCons.TestSCons()
39
40 lib = test.Configure_lib
41
42 NCR = test.NCR  # non-cached rebuild
43 CR  = test.CR   # cached rebuild (up to date)
44 NCF = test.NCF  # non-cached build failure
45 CF  = test.CF   # cached build failure
46
47 test.write('SConstruct', """\
48 if not int(ARGUMENTS.get('target_signatures_content', 0)):
49     Decider('timestamp-newer')
50 env = Environment()
51 import os
52 env.AppendENVPath('PATH', os.environ['PATH'])
53 conf = env.Configure()
54 r1 = conf.CheckCHeader( 'no_std_c_header.h' ) # leads to compile error
55 r2 = conf.CheckLib( 'no_c_library_SAFFDG' )   # leads to link error
56 env = conf.Finish()
57 if not (not r1 and not r2):
58      print "FAIL: ", r1, r2
59      Exit(1)
60 """)
61
62 # Verify correct behavior when we call Decider('timestamp-newer').
63
64 test.run()
65 test.checkLogAndStdout(["Checking for C header file no_std_c_header.h... ",
66                        "Checking for C library no_c_library_SAFFDG... "],
67                       ["no"]*2,
68                       [[((".c", NCR), (_obj, NCF))],
69                        [((".c", NCR), (_obj, NCR), (_exe, NCF))]],
70                       "config.log", ".sconf_temp", "SConstruct")
71
72 test.run()
73 test.checkLogAndStdout(["Checking for C header file no_std_c_header.h... ",
74                        "Checking for C library no_c_library_SAFFDG... "],
75                       ["no"]*2,
76                       [[((".c", CR), (_obj, NCF))],
77                        [((".c", CR), (_obj, CR), (_exe, NCF))]],
78                       "config.log", ".sconf_temp", "SConstruct")
79
80 # Same should be true for the default behavior of Decider('content').
81
82 test.run(arguments='--config=force target_signatures_content=1')
83 test.checkLogAndStdout(["Checking for C header file no_std_c_header.h... ",
84                        "Checking for C library no_c_library_SAFFDG... "],
85                       ["no"]*2,
86                       [[((".c", NCR), (_obj, NCF))],
87                        [((".c", NCR), (_obj, NCR), (_exe, NCF))]],
88                       "config.log", ".sconf_temp", "SConstruct")
89
90 test.run(arguments='target_signatures_content=1')
91 test.checkLogAndStdout(["Checking for C header file no_std_c_header.h... ",
92                        "Checking for C library no_c_library_SAFFDG... "],
93                       ["no"]*2,
94                       [[((".c", CR), (_obj, CF))],
95                        [((".c", CR), (_obj, CR), (_exe, CF))]],
96                       "config.log", ".sconf_temp", "SConstruct")
97
98 test.pass_test()