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