2045a3d64ac613521b7e454601b7e1e831b2ffdc
[scons.git] / test / AS / ASPP.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 import os
28 import string
29 import sys
30 import TestSCons
31
32 _python_ = TestSCons._python_
33 _exe   = TestSCons._exe
34
35 test = TestSCons.TestSCons()
36
37
38
39 if sys.platform == 'win32':
40
41     test.write('mylink.py', r"""
42 import string
43 import sys
44 args = sys.argv[1:]
45 while args:
46     a = args[0]
47     if a[0] != '/':
48         break
49     args = args[1:]
50     if string.lower(a[:5]) == '/out:': out = a[5:]
51 infile = open(args[0], 'rb')
52 outfile = open(out, 'wb')
53 for l in infile.readlines():
54     if l[:5] != '#link':
55         outfile.write(l)
56 sys.exit(0)
57 """)
58
59     test.write('myas.py', r"""
60 import sys
61 args = sys.argv[1:]
62 inf = None
63 while args:
64     a = args[0]
65     args = args[1:]
66     if not a[0] in "/-":
67         if not inf:
68             inf = a
69         continue
70     if a[:3] == '/Fo': out = a[3:]
71     if a == '-o':
72         out = args[0]
73         args = args[1:]
74 infile = open(inf, 'rb')
75 outfile = open(out, 'wb')
76 for l in infile.readlines():
77     if l[:3] != '#as':
78         outfile.write(l)
79 sys.exit(0)
80 """)
81
82 else:
83
84     test.write('mylink.py', r"""
85 import getopt
86 import sys
87 opts, args = getopt.getopt(sys.argv[1:], 'o:')
88 for opt, arg in opts:
89     if opt == '-o': out = arg
90 infile = open(args[0], 'rb')
91 outfile = open(out, 'wb')
92 for l in infile.readlines():
93     if l[:5] != '#link':
94         outfile.write(l)
95 sys.exit(0)
96 """)
97
98     test.write('myas.py', r"""
99 import getopt
100 import sys
101 opts, args = getopt.getopt(sys.argv[1:], 'co:')
102 for opt, arg in opts:
103     if opt == '-o': out = arg
104 infile = open(args[0], 'rb')
105 outfile = open(out, 'wb')
106 for l in infile.readlines():
107     if l[:3] != '#as':
108         outfile.write(l)
109 sys.exit(0)
110 """)
111
112 test.write('SConstruct', """
113 env = Environment(LINK = r'%(_python_)s mylink.py',
114                   LINKFLAGS = [],
115                   ASPP = r'%(_python_)s myas.py',
116                   CC = r'%(_python_)s myas.py')
117 env.Program(target = 'test1', source = 'test1.spp')
118 env.Program(target = 'test2', source = 'test2.SPP')
119 """ % locals())
120
121 test.write('test1.spp', r"""This is a .spp file.
122 #as
123 #link
124 """)
125
126 test.write('test2.SPP', r"""This is a .SPP file.
127 #as
128 #link
129 """)
130
131 test.run(arguments = '.', stderr = None)
132
133 test.fail_test(test.read('test1' + _exe) != "This is a .spp file.\n")
134
135 test.fail_test(test.read('test2' + _exe) != "This is a .SPP file.\n")
136
137
138
139 test.pass_test()