summaryrefslogtreecommitdiffstats
path: root/test/Fortran/F90FLAGS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2005-08-13 19:36:44 (GMT)
committerSteven Knight <knight@baldmt.com>2005-08-13 19:36:44 (GMT)
commit0fd2b45330d0d7c3a5aa4aec4a8c0456f5c0ddb6 (patch)
tree6ae3034783eaaec1c7bb5633a1a539e0bdd10652 /test/Fortran/F90FLAGS.py
parent1a3785fc03ffde5ea3102d7683dcabe4b6fd47c0 (diff)
downloadSCons-0fd2b45330d0d7c3a5aa4aec4a8c0456f5c0ddb6.zip
SCons-0fd2b45330d0d7c3a5aa4aec4a8c0456f5c0ddb6.tar.gz
SCons-0fd2b45330d0d7c3a5aa4aec4a8c0456f5c0ddb6.tar.bz2
Update Fortran tests that relied on the order of the -c option.
Diffstat (limited to 'test/Fortran/F90FLAGS.py')
-rw-r--r--test/Fortran/F90FLAGS.py28
1 files changed, 14 insertions, 14 deletions
diff --git a/test/Fortran/F90FLAGS.py b/test/Fortran/F90FLAGS.py
index 375df71..3ac5a29 100644
--- a/test/Fortran/F90FLAGS.py
+++ b/test/Fortran/F90FLAGS.py
@@ -130,20 +130,20 @@ test.write('test14.F95', "This is a .F95 file.\n#link\n#fortran\n")
test.run(arguments = '.', stderr = None)
-test.must_match('test01' + _exe, " -y -c\nThis is a .f file.\n")
-test.must_match('test02' + _exe, " -y -c\nThis is a .F file.\n")
-test.must_match('test03' + _exe, " -y -c\nThis is a .for file.\n")
-test.must_match('test04' + _exe, " -y -c\nThis is a .FOR file.\n")
-test.must_match('test05' + _exe, " -y -c\nThis is a .ftn file.\n")
-test.must_match('test06' + _exe, " -y -c\nThis is a .FTN file.\n")
-test.must_match('test07' + _exe, " -y -c\nThis is a .fpp file.\n")
-test.must_match('test08' + _exe, " -y -c\nThis is a .FPP file.\n")
-test.must_match('test09' + _exe, " -y -c\nThis is a .f77 file.\n")
-test.must_match('test10' + _exe, " -y -c\nThis is a .F77 file.\n")
-test.must_match('test11' + _exe, " -x -c\nThis is a .f90 file.\n")
-test.must_match('test12' + _exe, " -x -c\nThis is a .F90 file.\n")
-test.must_match('test13' + _exe, " -y -c\nThis is a .f95 file.\n")
-test.must_match('test14' + _exe, " -y -c\nThis is a .F95 file.\n")
+test.must_match('test01' + _exe, " -c -y\nThis is a .f file.\n")
+test.must_match('test02' + _exe, " -c -y\nThis is a .F file.\n")
+test.must_match('test03' + _exe, " -c -y\nThis is a .for file.\n")
+test.must_match('test04' + _exe, " -c -y\nThis is a .FOR file.\n")
+test.must_match('test05' + _exe, " -c -y\nThis is a .ftn file.\n")
+test.must_match('test06' + _exe, " -c -y\nThis is a .FTN file.\n")
+test.must_match('test07' + _exe, " -c -y\nThis is a .fpp file.\n")
+test.must_match('test08' + _exe, " -c -y\nThis is a .FPP file.\n")
+test.must_match('test09' + _exe, " -c -y\nThis is a .f77 file.\n")
+test.must_match('test10' + _exe, " -c -y\nThis is a .F77 file.\n")
+test.must_match('test11' + _exe, " -c -x\nThis is a .f90 file.\n")
+test.must_match('test12' + _exe, " -c -x\nThis is a .F90 file.\n")
+test.must_match('test13' + _exe, " -c -y\nThis is a .f95 file.\n")
+test.must_match('test14' + _exe, " -c -y\nThis is a .F95 file.\n")