scons_gd/scons/test/Fortran/F90PATH.py
2022-10-15 16:06:26 +02:00

296 lines
6.6 KiB
Python

#!/usr/bin/env python
#
# MIT License
#
# Copyright The SCons Foundation
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
import os
import TestSCons
_exe = TestSCons._exe
prog = 'prog' + _exe
subdir_prog = os.path.join('subdir', 'prog' + _exe)
variant_prog = os.path.join('variant', 'prog' + _exe)
args = prog + ' ' + subdir_prog + ' ' + variant_prog
test = TestSCons.TestSCons()
fc = 'f90'
if not test.detect_tool(fc):
# gfortran names all variants the same, try it too
fc = 'gfortran'
if not test.detect_tool(fc):
test.skip_test('Could not find a f90 tool; skipping test.\n')
test.subdir('include', 'subdir', ['subdir', 'include'], 'foobar', 'inc2')
test.write('SConstruct', """
env = Environment(
F90=r'%s',
F90PATH=['$FOO', '${TARGET.dir}', '${SOURCE.dir}'],
LINK='$F90',
FOO='include',
)
obj = env.Object(target='foobar/prog', source='subdir/prog.f90')
env.Program(target='prog', source=obj)
SConscript('subdir/SConscript', "env")
VariantDir('variant', 'subdir', 0)
include = Dir('include')
env = Environment(F90=r'%s', F90PATH=[include, '#foobar', '#subdir'], LINK='$F90')
SConscript('variant/SConscript', "env")
""" % (fc, fc))
test.write(['subdir', 'SConscript'],
"""
Import("env")
env.Program(target='prog', source='prog.f90')
""")
test.write(['include', 'foo.f90'],
r"""
PRINT *, 'include/foo.f90 1'
INCLUDE 'bar.f90'
""")
test.write(['include', 'bar.f90'],
r"""
PRINT *, 'include/bar.f90 1'
""")
test.write(['subdir', 'prog.f90'],
r"""
PROGRAM PROG
PRINT *, 'subdir/prog.f90'
include 'foo.f90'
include 'sss.f90'
include 'ttt.f90'
STOP
END
""")
test.write(['subdir', 'include', 'foo.f90'],
r"""
PRINT *, 'subdir/include/foo.f90 1'
INCLUDE 'bar.f90'
""")
test.write(['subdir', 'include', 'bar.f90'],
r"""
PRINT *, 'subdir/include/bar.f90 1'
""")
test.write(['subdir', 'sss.f90'],
r"""
PRINT *, 'subdir/sss.f90'
""")
test.write(['subdir', 'ttt.f90'],
r"""
PRINT *, 'subdir/ttt.f90'
""")
test.run(arguments = args)
test.run(program = test.workpath(prog),
stdout = """\
subdir/prog.f90
include/foo.f90 1
include/bar.f90 1
subdir/sss.f90
subdir/ttt.f90
""")
test.run(program = test.workpath(subdir_prog),
stdout = """\
subdir/prog.f90
subdir/include/foo.f90 1
subdir/include/bar.f90 1
subdir/sss.f90
subdir/ttt.f90
""")
test.run(program = test.workpath(variant_prog),
stdout = """\
subdir/prog.f90
include/foo.f90 1
include/bar.f90 1
subdir/sss.f90
subdir/ttt.f90
""")
# Make sure we didn't duplicate the source file in the variant subdirectory.
test.must_not_exist(test.workpath('variant', 'prog.f90'))
test.up_to_date(arguments = args)
test.write(['include', 'foo.f90'],
r"""
PRINT *, 'include/foo.f90 2'
INCLUDE 'bar.f90'
""")
test.run(arguments = args)
test.run(program = test.workpath(prog),
stdout = """\
subdir/prog.f90
include/foo.f90 2
include/bar.f90 1
subdir/sss.f90
subdir/ttt.f90
""")
test.run(program = test.workpath(subdir_prog),
stdout = """\
subdir/prog.f90
subdir/include/foo.f90 1
subdir/include/bar.f90 1
subdir/sss.f90
subdir/ttt.f90
""")
test.run(program = test.workpath(variant_prog),
stdout = """\
subdir/prog.f90
include/foo.f90 2
include/bar.f90 1
subdir/sss.f90
subdir/ttt.f90
""")
# Make sure we didn't duplicate the source file in the variant subdirectory.
test.must_not_exist(test.workpath('variant', 'prog.f90'))
test.up_to_date(arguments = args)
test.write(['include', 'bar.f90'],
r"""
PRINT *, 'include/bar.f90 2'
""")
test.run(arguments = args)
test.run(program = test.workpath(prog),
stdout = """\
subdir/prog.f90
include/foo.f90 2
include/bar.f90 2
subdir/sss.f90
subdir/ttt.f90
""")
test.run(program = test.workpath(subdir_prog),
stdout = """\
subdir/prog.f90
subdir/include/foo.f90 1
subdir/include/bar.f90 1
subdir/sss.f90
subdir/ttt.f90
""")
test.run(program = test.workpath(variant_prog),
stdout = """\
subdir/prog.f90
include/foo.f90 2
include/bar.f90 2
subdir/sss.f90
subdir/ttt.f90
""")
# Make sure we didn't duplicate the source file in the variant subdirectory.
test.must_not_exist(test.workpath('variant', 'prog.f90'))
test.up_to_date(arguments = args)
# Change F90PATH and make sure we don't rebuild because of it.
test.write('SConstruct', """\
env = Environment(
F90=r'%s',
F90PATH=Split('inc2 include ${TARGET.dir} ${SOURCE.dir}'),
LINK='$F90'
)
obj = env.Object(target='foobar/prog', source='subdir/prog.f90')
env.Program(target='prog', source=obj)
SConscript('subdir/SConscript', "env")
VariantDir('variant', 'subdir', 0)
include = Dir('include')
env = Environment(
F90=r'%s',
F90PATH=['inc2', include, '#foobar', '#subdir'],
LINK='$F90',
)
SConscript('variant/SConscript', "env")
""" % (fc, fc))
test.up_to_date(arguments = args)
test.write(['inc2', 'foo.f90'],
r"""
PRINT *, 'inc2/foo.f90 1'
INCLUDE 'bar.f90'
""")
test.run(arguments = args)
test.run(program = test.workpath(prog),
stdout = """\
subdir/prog.f90
inc2/foo.f90 1
include/bar.f90 2
subdir/sss.f90
subdir/ttt.f90
""")
test.run(program = test.workpath(subdir_prog),
stdout = """\
subdir/prog.f90
subdir/include/foo.f90 1
subdir/include/bar.f90 1
subdir/sss.f90
subdir/ttt.f90
""")
test.run(program = test.workpath(variant_prog),
stdout = """\
subdir/prog.f90
include/foo.f90 2
include/bar.f90 2
subdir/sss.f90
subdir/ttt.f90
""")
test.up_to_date(arguments = args)
test.pass_test()
# Local Variables:
# tab-width:4
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=4 shiftwidth=4: