Remove more unnecessary imports from test scripts.
[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 sys
28
29 import TestSCons
30
31 python = TestSCons.python
32
33 if sys.platform == 'win32':
34     _exe = '.exe'
35 else:
36     _exe = ''
37
38 test = TestSCons.TestSCons()
39
40 test.subdir('work')
41
42 no_repository = test.workpath('no_repository')
43 work_foo = test.workpath('work', 'foo' + _exe)
44
45 test.write(['work', 'SConstruct'], """
46 Repository('%s')
47 env = Environment()
48 env.Program(target = 'foo', source = Split('aaa.c bbb.c foo.c'))
49 """ % no_repository)
50
51 test.write(['work', 'aaa.c'], r"""
52 #include <stdio.h>
53 #include <stdlib.h>
54 void
55 aaa(void)
56 {
57         printf("work/aaa.c\n");
58 }
59 """)
60
61 test.write(['work', 'bbb.c'], r"""
62 #include <stdio.h>
63 #include <stdlib.h>
64 void
65 bbb(void)
66 {
67         printf("work/bbb.c\n");
68 }
69 """)
70
71 test.write(['work', 'foo.c'], r"""
72 #include <stdio.h>
73 #include <stdlib.h>
74 extern void aaa(void);
75 extern void bbb(void);
76 int
77 main(int argc, char *argv[])
78 {
79         argv[argc++] = "--";
80         aaa();
81         bbb();
82         printf("work/foo.c\n");
83         exit (0);
84 }
85 """)
86
87 test.run(chdir = 'work', arguments = '.')
88
89 test.run(program = work_foo, stdout = """work/aaa.c
90 work/bbb.c
91 work/foo.c
92 """)
93
94 test.up_to_date(chdir = 'work', arguments = '.')
95
96 test.pass_test()
97
98 # Local Variables:
99 # tab-width:4
100 # indent-tabs-mode:nil
101 # End:
102 # vim: set expandtab tabstop=4 shiftwidth=4: