Fix tests on systems where 'ar' prints warnings about creating archives. (Kevin...
[scons.git] / test / LIBPATH.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 TestSCons
28 import sys
29 import os.path
30 import time
31
32 _exe = TestSCons._exe
33 _dll = TestSCons._dll
34 dll_ = TestSCons.dll_
35     
36 test = TestSCons.TestSCons(match=TestSCons.match_re_dotall)
37
38 test.subdir('lib1', 'lib2')
39
40 prog1 = test.workpath('prog') + _exe
41 prog2 = test.workpath(dll_ + 'shlib') + _dll
42
43 test.write('SConstruct', """
44 env1 = Environment(LIBS = [ 'foo1' ],
45                    LIBPATH = [ '$FOO' ],
46                    FOO='./lib1')
47
48 f1 = env1.Object('f1', 'f1.c')
49
50 env1.Program(target = 'prog', source = 'prog.c')
51 env1.Library(target = './lib1/foo1', source = f1)
52
53 env2 = Environment(LIBS = 'foo2',
54                    LIBPATH = '.')
55 env2.SharedLibrary(target = 'shlib', source = 'shlib.c', no_import_lib = 1)
56 env2.Library(target = 'foo2', source = f1)
57 """)
58
59 test.write('f1.c', r"""
60 void
61 f1(void)
62 {
63         printf("f1.c\n");
64 }
65 """)
66
67 test.write('shlib.c', r"""
68 void f1(void);
69 int
70 test()
71 {
72     f1();
73     return 0;
74 }
75 """)
76
77 test.write('prog.c', r"""
78 void f1(void);
79 int
80 main(int argc, char *argv[])
81 {
82         argv[argc++] = "--";
83         f1();
84         printf("prog.c\n");
85         return 0;
86 }
87 """)
88
89 test.run(arguments = '.', stderr=TestSCons.noisy_ar)
90
91 test.run(program = prog1,
92          stdout = "f1.c\nprog.c\n")
93
94 oldtime1 = os.path.getmtime(prog1)
95 oldtime2 = os.path.getmtime(prog2)
96 time.sleep(2)
97 test.run(arguments = '.')
98
99 test.fail_test(oldtime1 != os.path.getmtime(prog1))
100 test.fail_test(oldtime2 != os.path.getmtime(prog2))
101
102 test.write('f1.c', r"""
103 void
104 f1(void)
105 {
106         printf("f1.c 1\n");
107 }
108 """)
109
110 test.run(arguments = '.', stderr=TestSCons.noisy_ar)
111 test.run(program = prog1,
112          stdout = "f1.c 1\nprog.c\n")
113 test.fail_test(oldtime2 == os.path.getmtime(prog2))
114 #test.up_to_date(arguments = '.')
115 # Change LIBPATH and make sure we don't rebuild because of it.
116 test.write('SConstruct', """
117 env1 = Environment(LIBS = [ 'foo1' ],
118                   LIBPATH = [ './lib1', './lib2' ])
119
120 f1 = env1.Object('f1', 'f1.c')
121
122 env1.Program(target = 'prog', source = 'prog.c')
123 env1.Library(target = './lib1/foo1', source = f1)
124
125 env2 = Environment(LIBS = 'foo2',
126                    LIBPATH = Split('. ./lib2'))
127 env2.SharedLibrary(target = 'shlib', source = 'shlib.c', no_import_lib = 1)
128 env2.Library(target = 'foo2', source = f1)
129 """)
130
131 test.up_to_date(arguments = '.', stderr=None)
132
133 test.write('f1.c', r"""
134 void
135 f1(void)
136 {
137         printf("f1.c 2\n");
138 }
139 """)
140
141 test.run(arguments = '.', stderr=TestSCons.noisy_ar)
142 test.run(program = prog1,
143          stdout = "f1.c 2\nprog.c\n")
144
145 test.up_to_date(arguments = '.')
146
147 # We need at least one file for some implementations of the Library
148 # builder, notably the SGI one.
149 test.write('empty.c', '')
150
151 # Check that a null-string LIBPATH doesn't blow up.
152 test.write('SConstruct', """
153 env = Environment(LIBPATH = '')
154 env.Library('foo', source = 'empty.c')
155 """)
156
157 test.run(arguments = '.', stderr=TestSCons.noisy_ar)
158
159 test.pass_test()