a81695753b192ea21818cc694330d1fb2c50e5ef
[scons.git] / test / subdivide.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 rebuilds do not occur when SConsignFile(None) is used to
29 put a .sconsign file in each directory, and TargetSignatures('content')
30 is used to subdivide a dependency tree.
31 """
32
33 import os.path
34
35 import TestSCons
36
37 test = TestSCons.TestSCons()
38
39 #if os.path.exists('sconsign.py'):
40 #    sconsign = 'sconsign.py'
41 #elif os.path.exists('sconsign'):
42 #    sconsign = 'sconsign'
43 #else:
44 #    print "Can find neither 'sconsign.py' nor 'sconsign' scripts."
45 #    test.no_result(1)
46
47 test.subdir('src', ['src', 'sub'])
48
49 test.write('SConstruct', """\
50 SConsignFile(None)
51 TargetSignatures('content')
52 env = Environment()
53 env.SConscript('src/SConstruct', exports=['env'])
54 env.Object('foo.c')
55 """)
56
57 test.write(['src', 'SConstruct'], """\
58 SConsignFile(None)
59 TargetSignatures('content')
60 env = Environment()
61 p = env.Program('prog', ['main.c', '../foo%s', 'sub/bar.c'])
62 env.Default(p)
63 """ % TestSCons._obj)
64
65 test.write('foo.c', """\
66 #include <stdio.h>
67 #include <stdlib.h>
68 void
69 foo(void) {
70     printf("foo.c\\n");
71 }
72 """)
73
74 test.write(['src', 'main.c'], """\
75 #include <stdio.h>
76 #include <stdlib.h>
77 extern void foo(void);
78 extern void bar(void);
79 int
80 main(int argc, char *argv[]) {
81     foo();
82     bar();
83     printf("src/main.c\\n");
84     exit (0);
85 }
86 """)
87
88 test.write(['src', 'sub', 'bar.c'], """\
89 #include <stdio.h>
90 #include <stdlib.h>
91 void
92 bar(void) {
93     printf("bar.c\\n");
94 }
95 """)
96
97 test.run()
98
99 test.run(program=test.workpath('src', 'prog'),
100          stdout="foo.c\nbar.c\nsrc/main.c\n")
101
102 test.up_to_date(chdir='src', arguments = test.workpath())
103
104 test.up_to_date(arguments = '.')
105
106 test.pass_test()