Support Java when using Repository and SConscriptChdir(0). (Charles Crain)
[scons.git] / test / Repository / absolute-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             'subdir',
41             'work')
42
43 src_SConscript = os.path.join('src', 'SConscript')
44 subdir_aaa_c = test.workpath('subdir', 'aaa.c')
45 work_src_foo = test.workpath('work', 'src', 'foo' + _exe)
46
47 opts = "-Y " + test.workpath('repository')
48
49 #
50 test.write(['repository', 'SConstruct'], r"""
51 SConscript(r'%s')
52 """ % src_SConscript)
53
54 test.write(['repository', 'src', 'SConscript'], r"""
55 env = Environment()
56 env.Program('foo', ['aaa.c', r'%s', 'foo.c'])
57 """ % subdir_aaa_c)
58
59 test.write(['repository', 'src', 'aaa.c'], r"""
60 void
61 src_aaa(void)
62 {
63         printf("repository/src/aaa.c\n");
64 }
65 """)
66
67 test.write(['subdir', 'aaa.c'], r"""
68 void
69 subdir_aaa(void)
70 {
71         printf("subdir/aaa.c\n");
72 }
73 """)
74
75 test.write(['repository', 'src', 'foo.c'], r"""
76 extern void src_aaa(void);
77 extern void subdir_aaa(void);
78 int
79 main(int argc, char *argv[])
80 {
81         argv[argc++] = "--";
82         src_aaa();
83         subdir_aaa();
84         printf("repository/src/foo.c\n");
85         exit (0);
86 }
87 """)
88
89 # Make the entire repository non-writable, so we'll detect
90 # if we try to write into it accidentally.
91 test.writable('repository', 0)
92
93 test.run(chdir = 'work', options = opts, arguments = '.')
94
95 test.run(program = work_src_foo, stdout = """repository/src/aaa.c
96 subdir/aaa.c
97 repository/src/foo.c
98 """)
99
100 test.up_to_date(chdir = 'work', options = opts, arguments = '.')
101
102 #
103 test.pass_test()