0345c7ef0fe357a5e0e7ac6a5294108f8361f305
[scons.git] / test / overrides.py
1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2001, 2002, 2003 Steven Knight
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 TestSCons
28 import sys
29
30
31 test = TestSCons.TestSCons()
32
33
34 python = TestSCons.python
35
36 test.write('SConstruct', """
37 env = Environment(LIBS=['a'])
38 def build(target, source, env):
39     assert env['CC'] == 'mycc'
40     assert env['LIBS'] == ['a','b']
41 builder = Builder(action=build)
42 env['BUILDERS']['Build'] = builder
43
44 Default(env.Build('foo', 'bar', CC='mycc', LIBS = env['LIBS']+['b']))
45 """)
46
47 test.write('bar', "bar\n")
48
49 test.run()
50
51 test.write('SConstruct', """
52 env = Environment()
53 env.Program('hello', 'hello.c',
54             CC=r'%s mycc.py',
55             LINK=r'%s mylink.py',
56             OBJSUFFIX='.not_obj',
57             PROGSUFFIX='.not_exe')
58 """%(python,python))
59
60 test.write('hello.c',"this ain't no c file!\n")
61
62 test.write('mycc.py',"""
63 open('hello.not_obj', 'wt').write('this is no object file!')
64 """)
65
66 test.write('mylink.py',"""
67 open('hello.not_exe', 'wt').write('this is not a program!')
68 """)
69
70 test.run(arguments='hello.not_exe')
71
72 assert test.read('hello.not_obj') == 'this is no object file!'
73 assert test.read('hello.not_exe') == 'this is not a program!'
74
75 test.up_to_date(arguments='hello.not_exe')
76
77 test.pass_test()
78
79