summaryrefslogtreecommitdiffstats
path: root/test/SHF77FLAGS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-06-26 01:47:54 (GMT)
committerSteven Knight <knight@baldmt.com>2002-06-26 01:47:54 (GMT)
commit5dd473bc401492d93a372b03965f2718b05426b8 (patch)
treecef954000dc721951f583f9d1367610cb1a54823 /test/SHF77FLAGS.py
parent651972979462ebc48aac362dd53119ef79291cf5 (diff)
downloadSCons-5dd473bc401492d93a372b03965f2718b05426b8.zip
SCons-5dd473bc401492d93a372b03965f2718b05426b8.tar.gz
SCons-5dd473bc401492d93a372b03965f2718b05426b8.tar.bz2
Win32 portability fixes for various tests.
Diffstat (limited to 'test/SHF77FLAGS.py')
-rw-r--r--test/SHF77FLAGS.py47
1 files changed, 7 insertions, 40 deletions
diff --git a/test/SHF77FLAGS.py b/test/SHF77FLAGS.py
index 3034c3e..f9d729f 100644
--- a/test/SHF77FLAGS.py
+++ b/test/SHF77FLAGS.py
@@ -40,40 +40,7 @@ test = TestSCons.TestSCons()
-if sys.platform == 'win32':
-
- o = ' -x /c'
-
- test.write('myg77.py', r"""
-import sys
-args = sys.argv[1:]
-inf = None
-optstring = ''
-while args:
- a = args[0]
- args = args[1:]
- if not a[0] in '/-':
- if not inf:
- inf = a
- continue
- if a[:3] == '/Fo':
- out = a[3:]
- continue
- optstring = optstring + ' ' + a
-infile = open(inf, 'rb')
-outfile = open(out, 'wb')
-outfile.write(optstring + "\n")
-for l in infile.readlines():
- if l[:4] != '#g77':
- outfile.write(l)
-sys.exit(0)
-""")
-
-else:
-
- o = ' -x -c'
-
- test.write('myg77.py', r"""
+test.write('myg77.py', r"""
import getopt
import sys
opts, args = getopt.getopt(sys.argv[1:], 'co:x')
@@ -129,17 +96,17 @@ test.write('test6.FPP', r"""This is a .FPP file.
test.run(arguments = '.', stderr = None)
-test.fail_test(test.read('test1' + _obj) != "%s\nThis is a .f file.\n" % o)
+test.fail_test(test.read('test1' + _obj) != " -x -c\nThis is a .f file.\n")
-test.fail_test(test.read('test2' + _obj) != "%s\nThis is a .for file.\n" % o)
+test.fail_test(test.read('test2' + _obj) != " -x -c\nThis is a .for file.\n")
-test.fail_test(test.read('test3' + _obj) != "%s\nThis is a .FOR file.\n" % o)
+test.fail_test(test.read('test3' + _obj) != " -x -c\nThis is a .FOR file.\n")
-test.fail_test(test.read('test4' + _obj) != "%s\nThis is a .F file.\n" % o)
+test.fail_test(test.read('test4' + _obj) != " -x -c\nThis is a .F file.\n")
-test.fail_test(test.read('test5' + _obj) != "%s\nThis is a .fpp file.\n" % o)
+test.fail_test(test.read('test5' + _obj) != " -x -c\nThis is a .fpp file.\n")
-test.fail_test(test.read('test6' + _obj) != "%s\nThis is a .FPP file.\n" % o)
+test.fail_test(test.read('test6' + _obj) != " -x -c\nThis is a .FPP file.\n")