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:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
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.
25 __revision__
= "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
28 Verify that we don't rebuild things unnecessarily when the order of
29 signatures changes because an included file shifts from the local sandbox
30 to a Repository and vice versa.
37 test
= TestSCons
.TestSCons()
39 test
.subdir('repository', 'work')
41 repository
= test
.workpath('repository')
42 work_foo
= test
.workpath('work', 'foo' + _exe
)
43 work_foo_h
= test
.workpath('work', 'foo.h')
45 test
.write(['work', 'SConstruct'], """
47 env = Environment(CPPPATH = ['.'])
48 env.Program(target = 'foo', source = 'foo.c')
52 #define STRING1 "foo.h"
56 #define STRING2 "bar.h"
59 test
.write(['repository', 'foo.h'], foo_h_contents
)
61 test
.write(['repository', 'bar.h'], bar_h_contents
)
63 test
.write(['repository', 'foo.c'], r
"""
69 main(int argc, char *argv[])
72 printf("%s\n", STRING1);
73 printf("%s\n", STRING2);
74 printf("repository/foo.c\n");
79 # Make the entire repository non-writable, so we'll detect
80 # if we try to write into it accidentally.
81 test
.writable('repository', 0)
85 test
.run(chdir
= 'work', arguments
= '.')
87 test
.run(program
= work_foo
, stdout
=
93 test
.up_to_date(chdir
= 'work', arguments
= '.')
97 # Now create the bar.h file locally, and make sure it's still up-to-date.
98 # This will change the order in which the include files are listed when
99 # calculating the signature; the old order was something like:
102 # and the new order will be:
105 # Because we write the same bar.h file contents, this should not cause
106 # a rebuild (because we sort the resulting signatures).
108 test
.write(['work', 'bar.h'], bar_h_contents
)
110 test
.up_to_date(chdir
= 'work', arguments
= '.')
114 # And for good measure, write the same foo.h file locally.
116 test
.write(['work', 'foo.h'], foo_h_contents
)
118 test
.up_to_date(chdir
= 'work', arguments
= '.')
126 # indent-tabs-mode:nil
128 # vim: set expandtab tabstop=4 shiftwidth=4: