Eliminate unnecessary WIN32/Win32/win32 references in tests, too.
[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 void
50 f1(void)
51 {
52         printf("f1.c\n");
53 }
54 """)
55
56 test.write('f2.cpp', r"""
57 #include <stdio.h>
58
59 void
60 f2(void)
61 {
62         printf("f2.c\n");
63 }
64 """)
65
66 test.write('f3.c', r"""
67 void
68 f3(void)
69 {
70         printf("f3.c\n");
71 }
72 """)
73
74 test.write('f4.c', r"""
75 void
76 f4(void)
77 {
78         printf("f4.c\n");
79 }
80 """)
81
82 test.write('f5.c', r"""
83 void
84 f5(void)
85 {
86         printf("f5.c\n");
87 }
88 """)
89
90 test.write('prog.cpp', r"""
91 #include <stdio.h>
92
93 extern "C" void f1(void);
94 extern void f2(void);
95 extern "C" void f3(void);
96 int
97 main(int argc, char *argv[])
98 {
99         argv[argc++] = "--";
100         f1();
101         f2();
102         f3();
103         printf("prog.c\n");
104         return 0;
105 }
106 """)
107
108 stdout = "f1.c\nf2.c\nf3.c\nprog.c\n"
109
110 test.run(arguments = '.')
111
112 test.run(program = test.workpath('prog1'), stdout = stdout)
113
114 test.run(program = test.workpath('prog2'), stdout = stdout)
115
116 test.run(program = test.workpath('prog3'), stdout = stdout)
117
118 test.pass_test()