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__"
31 test
= TestSCons
.TestSCons()
33 test
.write('SConstruct', """
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
"""
53 test
.write('f2.cpp', r
"""
63 test
.write('f3.c', r
"""
72 test
.write('f4.c', r
"""
81 test
.write('f5.c', r
"""
90 test
.write('prog.cpp', r
"""
93 extern "C" void f1(void);
95 extern "C" void f3(void);
97 main(int argc, char *argv[])
99 argv[argc++] = (char *)"--";
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
)
122 # indent-tabs-mode:nil
124 # vim: set expandtab tabstop=4 shiftwidth=4: