1b5fc41086e6735f2e1d874e6bc847f7838eaead
[scons.git] / test / Fortran / F95.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 else:
60
61     test.write('mylink.py', r"""
62 import getopt
63 import sys
64 opts, args = getopt.getopt(sys.argv[1:], 'o:')
65 for opt, arg in opts:
66     if opt == '-o': out = arg
67 infile = open(args[0], 'rb')
68 outfile = open(out, 'wb')
69 for l in infile.readlines():
70     if l[:5] != '#link':
71         outfile.write(l)
72 sys.exit(0)
73 """)
74
75 test.write('myfortran.py', r"""
76 import getopt
77 import sys
78 comment = '#' + sys.argv[1]
79 length = len(comment)
80 opts, args = getopt.getopt(sys.argv[2:], 'co:')
81 for opt, arg in opts:
82     if opt == '-o': out = arg
83 infile = open(args[0], 'rb')
84 outfile = open(out, 'wb')
85 for l in infile.readlines():
86     if l[:length] != comment:
87         outfile.write(l)
88 sys.exit(0)
89 """)
90
91 test.write('SConstruct', """
92 env = Environment(LINK = r'%(_python_)s mylink.py',
93                   LINKFLAGS = [],
94                   F95 = r'%(_python_)s myfortran.py f95',
95                   FORTRAN = r'%(_python_)s myfortran.py fortran')
96 env.Program(target = 'test01', source = 'test01.f')
97 env.Program(target = 'test02', source = 'test02.F')
98 env.Program(target = 'test03', source = 'test03.for')
99 env.Program(target = 'test04', source = 'test04.FOR')
100 env.Program(target = 'test05', source = 'test05.ftn')
101 env.Program(target = 'test06', source = 'test06.FTN')
102 env.Program(target = 'test07', source = 'test07.fpp')
103 env.Program(target = 'test08', source = 'test08.FPP')
104 env.Program(target = 'test09', source = 'test09.f77')
105 env.Program(target = 'test10', source = 'test10.F77')
106 env.Program(target = 'test11', source = 'test11.f90')
107 env.Program(target = 'test12', source = 'test12.F90')
108 env.Program(target = 'test13', source = 'test13.f95')
109 env.Program(target = 'test14', source = 'test14.F95')
110 """ % locals())
111
112 test.write('test01.f',   "This is a .f file.\n#link\n#fortran\n")
113 test.write('test02.F',   "This is a .F file.\n#link\n#fortran\n")
114 test.write('test03.for', "This is a .for file.\n#link\n#fortran\n")
115 test.write('test04.FOR', "This is a .FOR file.\n#link\n#fortran\n")
116 test.write('test05.ftn', "This is a .ftn file.\n#link\n#fortran\n")
117 test.write('test06.FTN', "This is a .FTN file.\n#link\n#fortran\n")
118 test.write('test07.fpp', "This is a .fpp file.\n#link\n#fortran\n")
119 test.write('test08.FPP', "This is a .FPP file.\n#link\n#fortran\n")
120 test.write('test09.f77', "This is a .f77 file.\n#link\n#fortran\n")
121 test.write('test10.F77', "This is a .F77 file.\n#link\n#fortran\n")
122 test.write('test11.f90', "This is a .f90 file.\n#link\n#fortran\n")
123 test.write('test12.F90', "This is a .F90 file.\n#link\n#fortran\n")
124 test.write('test13.f95', "This is a .f95 file.\n#link\n#f95\n")
125 test.write('test14.F95', "This is a .F95 file.\n#link\n#f95\n")
126
127 test.run(arguments = '.', stderr = None)
128
129 test.must_match('test01' + _exe, "This is a .f file.\n")
130 test.must_match('test02' + _exe, "This is a .F file.\n")
131 test.must_match('test03' + _exe, "This is a .for file.\n")
132 test.must_match('test04' + _exe, "This is a .FOR file.\n")
133 test.must_match('test05' + _exe, "This is a .ftn file.\n")
134 test.must_match('test06' + _exe, "This is a .FTN file.\n")
135 test.must_match('test07' + _exe, "This is a .fpp file.\n")
136 test.must_match('test08' + _exe, "This is a .FPP file.\n")
137 test.must_match('test09' + _exe, "This is a .f77 file.\n")
138 test.must_match('test10' + _exe, "This is a .F77 file.\n")
139 test.must_match('test11' + _exe, "This is a .f90 file.\n")
140 test.must_match('test12' + _exe, "This is a .F90 file.\n")
141 test.must_match('test13' + _exe, "This is a .f95 file.\n")
142 test.must_match('test14' + _exe, "This is a .F95 file.\n")
143
144
145
146 g95 = test.detect('F95', 'g95')
147 FTN_LIB = TestSCons.fortran_lib
148
149 if g95:
150
151     test.write("wrapper.py",
152 """import os
153 import string
154 import sys
155 open('%s', 'wb').write("wrapper.py\\n")
156 os.system(string.join(sys.argv[1:], " "))
157 """ % string.replace(test.workpath('wrapper.out'), '\\', '\\\\'))
158
159     test.write('SConstruct', """
160 foo = Environment(LIBS = %(FTN_LIB)s)
161 f95 = foo.Dictionary('F95')
162 bar = foo.Copy(F95 = r'%(_python_)s wrapper.py ' + f95)
163 foo.Program(target = 'foo', source = 'foo.f')
164 bar.Program(target = 'bar', source = 'bar.f')
165 """ % locals())
166
167     test.write('foo.f', r"""
168       PROGRAM FOO
169       PRINT *,'foo.f'
170       STOP
171       END
172 """)
173
174     test.write('bar.f', r"""
175       PROGRAM BAR
176       PRINT *,'bar.f'
177       STOP
178       END
179 """)
180
181
182     test.run(arguments = 'foo' + _exe, stderr = None)
183
184     test.run(program = test.workpath('foo'), stdout =  " foo.f\n")
185
186     test.must_not_exist('wrapper.out')
187
188     test.run(arguments = 'bar' + _exe)
189
190     test.run(program = test.workpath('bar'), stdout =  " bar.f\n")
191
192     test.must_match('wrapper.out', "wrapper.py\n")
193
194 test.pass_test()