Merged revisions 1582-1665 via svnmerge from
[scons.git] / test / Fortran / F77FLAGS.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
34 test = TestSCons.TestSCons()
35 _exe = TestSCons._exe
36
37 if sys.platform == 'win32':
38
39     test.write('mylink.py', r"""
40 import string
41 import sys
42 args = sys.argv[1:]
43 while args:
44     a = args[0]
45     if a[0] != '/':
46         break
47     args = args[1:]
48     if string.lower(a[:5]) == '/out:': out = a[5:]
49 infile = open(args[0], 'rb')
50 outfile = open(out, 'wb')
51 for l in infile.readlines():
52     if l[:5] != '#link':
53         outfile.write(l)
54 sys.exit(0)
55 """)
56
57 else:
58
59     test.write('mylink.py', r"""
60 import getopt
61 import sys
62 opts, args = getopt.getopt(sys.argv[1:], 'o:')
63 for opt, arg in opts:
64     if opt == '-o': out = arg
65 infile = open(args[0], 'rb')
66 outfile = open(out, 'wb')
67 for l in infile.readlines():
68     if l[:5] != '#link':
69         outfile.write(l)
70 sys.exit(0)
71 """)
72
73 test.write('myg77.py', r"""
74 import getopt
75 import sys
76 opts, args = getopt.getopt(sys.argv[1:], 'co:x')
77 optstring = ''
78 for opt, arg in opts:
79     if opt == '-o': out = arg
80     else: optstring = optstring + ' ' + opt
81 infile = open(args[0], 'rb')
82 outfile = open(out, 'wb')
83 outfile.write(optstring + "\n")
84 for l in infile.readlines():
85     if l[:4] != '#g77':
86         outfile.write(l)
87 sys.exit(0)
88 """)
89
90
91
92 test.write('SConstruct', """
93 env = Environment(LINK = r'%(_python_)s mylink.py',
94                   LINKFLAGS = [],
95                   F77 = r'%(_python_)s myg77.py',
96                   F77FLAGS = '-x')
97 env.Program(target = 'test01', source = 'test01.f')
98 env.Program(target = 'test02', source = 'test02.F')
99 env.Program(target = 'test03', source = 'test03.for')
100 env.Program(target = 'test04', source = 'test04.FOR')
101 env.Program(target = 'test05', source = 'test05.ftn')
102 env.Program(target = 'test06', source = 'test06.FTN')
103 env.Program(target = 'test07', source = 'test07.fpp')
104 env.Program(target = 'test08', source = 'test08.FPP')
105 env.Program(target = 'test09', source = 'test09.f77')
106 env.Program(target = 'test10', source = 'test10.F77')
107 """ % locals())
108
109 test.write('test01.f',   "This is a .f file.\n#link\n#g77\n")
110 test.write('test02.F',   "This is a .F file.\n#link\n#g77\n")
111 test.write('test03.for', "This is a .for file.\n#link\n#g77\n")
112 test.write('test04.FOR', "This is a .FOR file.\n#link\n#g77\n")
113 test.write('test05.ftn', "This is a .ftn file.\n#link\n#g77\n")
114 test.write('test06.FTN', "This is a .FTN file.\n#link\n#g77\n")
115 test.write('test07.fpp', "This is a .fpp file.\n#link\n#g77\n")
116 test.write('test08.FPP', "This is a .FPP file.\n#link\n#g77\n")
117 test.write('test09.f77', "This is a .f77 file.\n#link\n#g77\n")
118 test.write('test10.F77', "This is a .F77 file.\n#link\n#g77\n")
119
120 test.run(arguments = '.', stderr = None)
121
122 test.must_match('test01' + _exe, " -c -x\nThis is a .f file.\n")
123 test.must_match('test02' + _exe, " -c -x\nThis is a .F file.\n")
124 test.must_match('test03' + _exe, " -c -x\nThis is a .for file.\n")
125 test.must_match('test04' + _exe, " -c -x\nThis is a .FOR file.\n")
126 test.must_match('test05' + _exe, " -c -x\nThis is a .ftn file.\n")
127 test.must_match('test06' + _exe, " -c -x\nThis is a .FTN file.\n")
128 test.must_match('test07' + _exe, " -c -x\nThis is a .fpp file.\n")
129 test.must_match('test08' + _exe, " -c -x\nThis is a .FPP file.\n")
130 test.must_match('test09' + _exe, " -c -x\nThis is a .f77 file.\n")
131 test.must_match('test10' + _exe, " -c -x\nThis is a .F77 file.\n")
132
133
134
135 g77 = test.detect('F77', 'g77')
136 FTN_LIB = TestSCons.fortran_lib
137
138 if g77:
139
140     test.write("wrapper.py",
141 """import os
142 import string
143 import sys
144 open('%s', 'wb').write("wrapper.py\\n")
145 os.system(string.join(sys.argv[1:], " "))
146 """ % string.replace(test.workpath('wrapper.out'), '\\', '\\\\'))
147
148     test.write('SConstruct', """
149 foo = Environment(LIBS = %FTN_LIBs)
150 f77 = foo.Dictionary('F77')
151 bar = foo.Copy(F77 = r'%(_python_)s wrapper.py ' + f77, F77FLAGS = '-Ix')
152 foo.Program(target = 'foo', source = 'foo.f')
153 bar.Program(target = 'bar', source = 'bar.f')
154 """ % locals())
155
156     test.write('foo.f', r"""
157       PROGRAM FOO
158       PRINT *,'foo.f'
159       STOP
160       END
161 """)
162
163     test.write('bar.f', r"""
164       PROGRAM BAR
165       PRINT *,'bar.f'
166       STOP
167       END
168 """)
169
170
171     test.run(arguments = 'foo' + _exe, stderr = None)
172
173     test.run(program = test.workpath('foo'), stdout =  " foo.f\n")
174
175     test.must_not_exist('wrapper.out')
176
177     test.run(arguments = 'bar' + _exe)
178
179     test.run(program = test.workpath('bar'), stdout =  " bar.f\n")
180
181     test.must_match('wrapper.out', "wrapper.py\n")
182
183 test.pass_test()