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:
13 # The above copyright notice and this permission notice shall be included
14 # in all copies or substantial portions of the Software.
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.
25 __revision__
= "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
29 _python_
= TestSCons
._python
_
31 test
= TestSCons
.TestSCons()
33 test
.file_fixture('mycompile.py')
35 if not TestSCons
.case_sensitive_suffixes('.f','.F'):
38 fortranpp
= 'fortranpp'
41 test
.write('SConstruct', """
42 env = Environment(FORTRANCOM = r'%(_python_)s mycompile.py fortran $TARGET $SOURCES',
43 FORTRANCOMSTR = 'Building fortran $TARGET from $SOURCES',
44 FORTRANPPCOM = r'%(_python_)s mycompile.py fortranpp $TARGET $SOURCES',
45 FORTRANPPCOMSTR = 'Building fortranpp $TARGET from $SOURCES',
47 env.Object(source = 'test01.f')
48 env.Object(source = 'test02.F')
49 env.Object(source = 'test03.for')
50 env.Object(source = 'test04.FOR')
51 env.Object(source = 'test05.ftn')
52 env.Object(source = 'test06.FTN')
53 env.Object(source = 'test07.fpp')
54 env.Object(source = 'test08.FPP')
57 test
.write('test01.f', "A .f file.\n/*fortran*/\n")
58 test
.write('test02.F', "A .F file.\n/*%s*/\n" % fortranpp
)
59 test
.write('test03.for', "A .for file.\n/*fortran*/\n")
60 test
.write('test04.FOR', "A .FOR file.\n/*%s*/\n" % fortranpp
)
61 test
.write('test05.ftn', "A .ftn file.\n/*fortran*/\n")
62 test
.write('test06.FTN', "A .FTN file.\n/*%s*/\n" % fortranpp
)
63 test
.write('test07.fpp', "A .fpp file.\n/*fortranpp*/\n")
64 test
.write('test08.FPP', "A .FPP file.\n/*fortranpp*/\n")
66 test
.run(stdout
= test
.wrap_stdout("""\
67 Building fortran test01.obj from test01.f
68 Building %(fortranpp)s test02.obj from test02.F
69 Building fortran test03.obj from test03.for
70 Building %(fortranpp)s test04.obj from test04.FOR
71 Building fortran test05.obj from test05.ftn
72 Building %(fortranpp)s test06.obj from test06.FTN
73 Building fortranpp test07.obj from test07.fpp
74 Building fortranpp test08.obj from test08.FPP
77 test
.must_match('test01.obj', "A .f file.\n")
78 test
.must_match('test02.obj', "A .F file.\n")
79 test
.must_match('test03.obj', "A .for file.\n")
80 test
.must_match('test04.obj', "A .FOR file.\n")
81 test
.must_match('test05.obj', "A .ftn file.\n")
82 test
.must_match('test06.obj', "A .FTN file.\n")
83 test
.must_match('test07.obj', "A .fpp file.\n")
84 test
.must_match('test08.obj', "A .FPP file.\n")
90 # indent-tabs-mode:nil
92 # vim: set expandtab tabstop=4 shiftwidth=4: