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__"
28 Test construction variable expansion in Builder paths.
38 test
= TestSCons
.TestSCons()
42 test
.write('SConstruct', """\
43 env = Environment(SUBDIR = 'sub')
44 env.Program(target = 'foo1', source = env.Object(source = r'%s'))
45 env.Program(source = env.Object(target = r'%s', source = 'f2.c'))
46 env.Program('foo3', r'%s')
48 """ % (os
.path
.join('$SUBDIR', 'f1.c'),
49 os
.path
.join('$SUBDIR', 'foo2'),
50 os
.path
.join('$SUBDIR', 'f3.c'),
51 os
.path
.join('$SUBDIR', 'foo4.c')))
53 test
.write(['sub', 'f1.c'], r
"""
57 main(int argc, char *argv[])
65 test
.write('f2.c', r
"""
69 main(int argc, char *argv[])
77 test
.write(['sub', 'f3.c'], r
"""
81 main(int argc, char *argv[])
89 test
.write(['sub', 'foo4.c'], r
"""
93 main(int argc, char *argv[])
96 printf("sub/foo4.c\n");
101 test
.run(arguments
= '.')
103 test
.run(program
= test
.workpath('foo1' + _exe
), stdout
= "sub/f1.c\n")
104 test
.run(program
= test
.workpath('sub', 'foo2' + _exe
), stdout
= "f2.c\n")
105 test
.run(program
= test
.workpath('foo3' + _exe
), stdout
= "sub/f3.c\n")
106 test
.run(program
= test
.workpath('sub','foo4' + _exe
), stdout
= "sub/foo4.c\n")
108 test
.fail_test(not os
.path
.exists(test
.workpath('sub', 'f1' + _obj
)))
109 test
.fail_test(not os
.path
.exists(test
.workpath('sub', 'foo2' + _obj
)))
110 test
.fail_test(not os
.path
.exists(test
.workpath('sub', 'f3' + _obj
)))
111 test
.fail_test(not os
.path
.exists(test
.workpath('sub', 'foo4' + _obj
)))
113 test
.up_to_date(arguments
= '.')
119 # indent-tabs-mode:nil
121 # vim: set expandtab tabstop=4 shiftwidth=4: