Added fix for TeX includes with same name as subdirs.
[scons.git] / test / Repository / top-level-path.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 import os.path
28 import sys
29 import TestSCons
30
31 if sys.platform == 'win32':
32     _exe = '.exe'
33 else:
34     _exe = ''
35
36 test = TestSCons.TestSCons()
37
38 test.subdir('repository',
39             ['repository', 'src'],
40             ['repository', 'subdir'],
41             'work')
42
43 src_SConscript = os.path.join('src', 'SConscript')
44 work_src_foo = test.workpath('work', 'src', 'foo' + _exe)
45
46 opts = "-Y " + test.workpath('repository')
47
48 #
49 test.write(['repository', 'SConstruct'], r"""
50 SConscript(r'%s')
51 """ % src_SConscript)
52
53 test.write(['repository', 'src', 'SConscript'], r"""
54 env = Environment()
55 env.Program('foo', ['aaa.c', '#subdir/aaa.c', 'foo.c'])
56 """)
57
58 test.write(['repository', 'src', 'aaa.c'], r"""
59 #include <stdio.h>
60 #include <stdlib.h>
61 void
62 src_aaa(void)
63 {
64         printf("repository/src/aaa.c\n");
65 }
66 """)
67
68 test.write(['repository', 'subdir', 'aaa.c'], r"""
69 #include <stdio.h>
70 #include <stdlib.h>
71 void
72 subdir_aaa(void)
73 {
74         printf("repository/subdir/aaa.c\n");
75 }
76 """)
77
78 test.write(['repository', 'src', 'foo.c'], r"""
79 #include <stdio.h>
80 #include <stdlib.h>
81 extern void src_aaa(void);
82 extern void subdir_aaa(void);
83 int
84 main(int argc, char *argv[])
85 {
86         argv[argc++] = "--";
87         src_aaa();
88         subdir_aaa();
89         printf("repository/src/foo.c\n");
90         exit (0);
91 }
92 """)
93
94 # Make the entire repository non-writable, so we'll detect
95 # if we try to write into it accidentally.
96 test.writable('repository', 0)
97
98 test.run(chdir = 'work', options = opts, arguments = '.')
99
100 test.run(program = work_src_foo, stdout = """repository/src/aaa.c
101 repository/subdir/aaa.c
102 repository/src/foo.c
103 """)
104
105 test.up_to_date(chdir = 'work', options = opts, arguments = '.')
106
107 #
108 test.pass_test()
109
110 # Local Variables:
111 # tab-width:4
112 # indent-tabs-mode:nil
113 # End:
114 # vim: set expandtab tabstop=4 shiftwidth=4: