Support Java when using Repository and SConscriptChdir(0). (Charles Crain)
[scons.git] / test / Repository / no-repository.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
28 import string
29 import sys
30 import TestSCons
31
32 python = TestSCons.python
33
34 if sys.platform == 'win32':
35     _exe = '.exe'
36 else:
37     _exe = ''
38
39 test = TestSCons.TestSCons()
40
41 test.subdir('work')
42
43 no_repository = test.workpath('no_repository')
44 work_foo = test.workpath('work', 'foo' + _exe)
45
46 test.write(['work', 'SConstruct'], """
47 Repository('%s')
48 env = Environment()
49 env.Program(target = 'foo', source = Split('aaa.c bbb.c foo.c'))
50 """ % no_repository)
51
52 test.write(['work', 'aaa.c'], r"""
53 void
54 aaa(void)
55 {
56         printf("work/aaa.c\n");
57 }
58 """)
59
60 test.write(['work', 'bbb.c'], r"""
61 void
62 bbb(void)
63 {
64         printf("work/bbb.c\n");
65 }
66 """)
67
68 test.write(['work', 'foo.c'], r"""
69 extern void aaa(void);
70 extern void bbb(void);
71 int
72 main(int argc, char *argv[])
73 {
74         argv[argc++] = "--";
75         aaa();
76         bbb();
77         printf("work/foo.c\n");
78         exit (0);
79 }
80 """)
81
82 test.run(chdir = 'work', arguments = '.')
83
84 test.run(program = work_foo, stdout = """work/aaa.c
85 work/bbb.c
86 work/foo.c
87 """)
88
89 test.up_to_date(chdir = 'work', arguments = '.')
90
91 test.pass_test()