Added fix for TeX includes with same name as subdirs.
[scons.git] / test / Object.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     _obj = '.obj'
32 else:
33     _obj = '.o'
34
35 test = TestSCons.TestSCons()
36
37 test.write('SConstruct', """
38 env = Environment()
39 f1 = env.Object(target = 'f1', source = 'f1.c')
40 f2 = Object(target = 'f2', source = 'f2.cpp')
41 f3 = env.Object(target = 'f3', source = 'f3.c')
42 mult_o = env.Object(['f4.c', 'f5.c'])
43 env.Program(target = 'prog1', source = Split('f1%s f2%s f3%s f4%s prog.cpp'))
44 env.Program(target = 'prog2', source = mult_o + [f1, f2, f3, 'prog.cpp'])
45 env.Program(target = 'prog3', source = ['f1%s', f2, 'f3%s', 'prog.cpp'])
46 """ % (_obj, _obj, _obj, _obj, _obj, _obj))
47
48 test.write('f1.c', r"""
49 #include <stdio.h>
50 void
51 f1(void)
52 {
53         printf("f1.c\n");
54 }
55 """)
56
57 test.write('f2.cpp', r"""
58 #include <stdio.h>
59
60 void
61 f2(void)
62 {
63         printf("f2.c\n");
64 }
65 """)
66
67 test.write('f3.c', r"""
68 #include <stdio.h>
69 void
70 f3(void)
71 {
72         printf("f3.c\n");
73 }
74 """)
75
76 test.write('f4.c', r"""
77 #include <stdio.h>
78 void
79 f4(void)
80 {
81         printf("f4.c\n");
82 }
83 """)
84
85 test.write('f5.c', r"""
86 #include <stdio.h>
87 void
88 f5(void)
89 {
90         printf("f5.c\n");
91 }
92 """)
93
94 test.write('prog.cpp', r"""
95 #include <stdio.h>
96
97 extern "C" void f1(void);
98 extern void f2(void);
99 extern "C" void f3(void);
100 int
101 main(int argc, char *argv[])
102 {
103         argv[argc++] = (char *)"--";
104         f1();
105         f2();
106         f3();
107         printf("prog.c\n");
108         return 0;
109 }
110 """)
111
112 stdout = "f1.c\nf2.c\nf3.c\nprog.c\n"
113
114 test.run(arguments = '.')
115
116 test.run(program = test.workpath('prog1'), stdout = stdout)
117
118 test.run(program = test.workpath('prog2'), stdout = stdout)
119
120 test.run(program = test.workpath('prog3'), stdout = stdout)
121
122 test.pass_test()
123
124 # Local Variables:
125 # tab-width:4
126 # indent-tabs-mode:nil
127 # End:
128 # vim: set expandtab tabstop=4 shiftwidth=4: