1d93b75fcac2d36ac4182a5e6235054243859751
[scons.git] / test / LINK / SHLINKCOMSTR.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 """
28 Test that the $SHLINKCOMSTR construction variable allows you to customize
29 the displayed linker string for programs using shared libraries.
30 """
31
32 import TestSCons
33
34 _python_ = TestSCons._python_
35
36 test = TestSCons.TestSCons()
37
38
39
40 test.write('mycc.py', r"""
41 import sys
42 outfile = open(sys.argv[1], 'wb')
43 for f in sys.argv[2:]:
44     infile = open(f, 'rb')
45     for l in filter(lambda l: l != '/*cc*/\n', infile.readlines()):
46         outfile.write(l)
47 sys.exit(0)
48
49 """)
50 test.write('mylink.py', r"""
51 import sys
52 outfile = open(sys.argv[1], 'wb')
53 for f in sys.argv[2:]:
54     infile = open(f, 'rb')
55     for l in filter(lambda l: l != '/*link*/\n', infile.readlines()):
56         outfile.write(l)
57 sys.exit(0)
58 """)
59
60 test.write('SConstruct', """
61 env = Environment(SHCCCOM = r'%(_python_)s mycc.py $TARGET $SOURCES',
62                   SHLINKCOM = r'%(_python_)s mylink.py $TARGET $SOURCES',
63                   SHLINKCOMSTR = 'Linking shared $TARGET from $SOURCES',
64                   SHOBJPREFIX = '',
65                   SHOBJSUFFIX = '.obj',
66                   SHLIBPREFIX = '',
67                   SHLIBSUFFIX = '.dll')
68 t1 = env.SharedObject('test1', 'test1.c')
69 t2 = env.SharedObject('test2', 'test2.c')
70 env.SharedLibrary(target = 'test3', source = [t1, t2])
71 """ % locals())
72
73 test.write('test1.c', """\
74 test1.c
75 /*cc*/
76 /*link*/
77 """)
78
79 test.write('test2.c', """\
80 test2.c
81 /*cc*/
82 /*link*/
83 """)
84
85 test.run(stdout = test.wrap_stdout("""\
86 %(_python_)s mycc.py test1.obj test1.c
87 %(_python_)s mycc.py test2.obj test2.c
88 Linking shared test3.dll from test1.obj test2.obj
89 """ % locals()))
90
91 test.must_match('test3.dll', "test1.c\ntest2.c\n")
92
93
94
95
96 test.pass_test()
97
98 # Local Variables:
99 # tab-width:4
100 # indent-tabs-mode:nil
101 # End:
102 # vim: set expandtab tabstop=4 shiftwidth=4: