summaryrefslogtreecommitdiffstats
path: root/test/Fortran/SHFORTRAN.py
diff options
context:
space:
mode:
authorWilliam Blevins <wblevins001@gmail.com>2016-11-28 02:27:10 (GMT)
committerWilliam Blevins <wblevins001@gmail.com>2016-11-28 02:27:10 (GMT)
commit51abbd22089b2274161ee95d48d00525d7905b01 (patch)
tree52c998b0a8faf434f306c5498199e6ba468ff261 /test/Fortran/SHFORTRAN.py
parente3d5fdee7267b8e07873f77afe4f2ecc46f82f16 (diff)
downloadSCons-51abbd22089b2274161ee95d48d00525d7905b01.zip
SCons-51abbd22089b2274161ee95d48d00525d7905b01.tar.gz
SCons-51abbd22089b2274161ee95d48d00525d7905b01.tar.bz2
Python3 test fixes for Fortran/Side-effect.
Diffstat (limited to 'test/Fortran/SHFORTRAN.py')
-rw-r--r--test/Fortran/SHFORTRAN.py21
1 files changed, 3 insertions, 18 deletions
diff --git a/test/Fortran/SHFORTRAN.py b/test/Fortran/SHFORTRAN.py
index fdcba7f..2155736 100644
--- a/test/Fortran/SHFORTRAN.py
+++ b/test/Fortran/SHFORTRAN.py
@@ -24,6 +24,7 @@
__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__"
+import os
import TestSCons
_python_ = TestSCons._python_
@@ -32,26 +33,10 @@ obj_ = TestSCons.shobj_
test = TestSCons.TestSCons()
-
-
-test.write('myfortran.py', r"""
-import getopt
-import sys
-opts, args = getopt.getopt(sys.argv[1:], 'cf:o:K:')
-for opt, arg in opts:
- if opt == '-o': out = arg
-infile = open(args[0], 'rb')
-outfile = open(out, 'wb')
-for l in infile.readlines():
- if l[:8] != '#fortran':
- outfile.write(l)
-sys.exit(0)
-""")
-
-
+test.file_fixture(os.path.join('fixture', 'myfortran.py'))
test.write('SConstruct', """
-env = Environment(SHFORTRAN = r'%(_python_)s myfortran.py')
+env = Environment(SHFORTRAN = r'%(_python_)s myfortran.py fortran')
env.SharedObject(target = 'test01', source = 'test01.f')
env.SharedObject(target = 'test02', source = 'test02.F')
env.SharedObject(target = 'test03', source = 'test03.for')