Merge pull request #4359 from mwichmann/maint/dead-sigstuff
[scons.git] / test / Object.py
blobc07da46cea0504b1aaecec7b4ddedc1258e8b064
1 #!/usr/bin/env python
3 # __COPYRIGHT__
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:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
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.
25 __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
27 import TestSCons
29 _obj = TestSCons._obj
31 test = TestSCons.TestSCons()
33 test.write('SConstruct', """
34 env = Environment()
35 f1 = env.Object(target = 'f1', source = 'f1.c')
36 f2 = Object(target = 'f2', source = 'f2.cpp')
37 f3 = env.Object(target = 'f3', source = 'f3.c')
38 mult_o = env.Object(['f4.c', 'f5.c'])
39 env.Program(target = 'prog1', source = Split('f1%s f2%s f3%s f4%s prog.cpp'))
40 env.Program(target = 'prog2', source = mult_o + [f1, f2, f3, 'prog.cpp'])
41 env.Program(target = 'prog3', source = ['f1%s', f2, 'f3%s', 'prog.cpp'])
42 """ % (_obj, _obj, _obj, _obj, _obj, _obj))
44 test.write('f1.c', r"""
45 #include <stdio.h>
46 void
47 f1(void)
49 printf("f1.c\n");
51 """)
53 test.write('f2.cpp', r"""
54 #include <stdio.h>
56 void
57 f2(void)
59 printf("f2.c\n");
61 """)
63 test.write('f3.c', r"""
64 #include <stdio.h>
65 void
66 f3(void)
68 printf("f3.c\n");
70 """)
72 test.write('f4.c', r"""
73 #include <stdio.h>
74 void
75 f4(void)
77 printf("f4.c\n");
79 """)
81 test.write('f5.c', r"""
82 #include <stdio.h>
83 void
84 f5(void)
86 printf("f5.c\n");
88 """)
90 test.write('prog.cpp', r"""
91 #include <stdio.h>
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[])
99 argv[argc++] = (char *)"--";
100 f1();
101 f2();
102 f3();
103 printf("prog.c\n");
104 return 0;
106 """)
108 stdout = "f1.c\nf2.c\nf3.c\nprog.c\n"
110 test.run(arguments = '.')
112 test.run(program = test.workpath('prog1'), stdout = stdout)
114 test.run(program = test.workpath('prog2'), stdout = stdout)
116 test.run(program = test.workpath('prog3'), stdout = stdout)
118 test.pass_test()
120 # Local Variables:
121 # tab-width:4
122 # indent-tabs-mode:nil
123 # End:
124 # vim: set expandtab tabstop=4 shiftwidth=4: