diff options
author | William Blevins <wblevins001@gmail.com> | 2016-11-28 02:27:10 (GMT) |
---|---|---|
committer | William Blevins <wblevins001@gmail.com> | 2016-11-28 02:27:10 (GMT) |
commit | 51abbd22089b2274161ee95d48d00525d7905b01 (patch) | |
tree | 52c998b0a8faf434f306c5498199e6ba468ff261 /test/Fortran/F95FILESUFFIXES.py | |
parent | e3d5fdee7267b8e07873f77afe4f2ecc46f82f16 (diff) | |
download | SCons-51abbd22089b2274161ee95d48d00525d7905b01.zip SCons-51abbd22089b2274161ee95d48d00525d7905b01.tar.gz SCons-51abbd22089b2274161ee95d48d00525d7905b01.tar.bz2 |
Python3 test fixes for Fortran/Side-effect.
Diffstat (limited to 'test/Fortran/F95FILESUFFIXES.py')
-rw-r--r-- | test/Fortran/F95FILESUFFIXES.py | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/test/Fortran/F95FILESUFFIXES.py b/test/Fortran/F95FILESUFFIXES.py index 8643a24..ac563cc 100644 --- a/test/Fortran/F95FILESUFFIXES.py +++ b/test/Fortran/F95FILESUFFIXES.py @@ -24,31 +24,16 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" +import os import TestSCons - - _python_ = TestSCons._python_ _exe = TestSCons._exe test = TestSCons.TestSCons() test.file_fixture('mylink.py') - -test.write('myfortran.py', r""" -import getopt -import sys -comment = '#' + sys.argv[1] -opts, args = getopt.getopt(sys.argv[2:], 'co:') -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[:len(comment)] != comment: - outfile.write(l) -sys.exit(0) -""") +test.file_fixture(os.path.join('fixture', 'myfortran.py')) # Test default file suffix: .f90/.F90 for F90 test.write('SConstruct', """ |