diff options
author | Steven Knight <knight@baldmt.com> | 2005-10-14 16:23:52 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-10-14 16:23:52 (GMT) |
commit | af962864b108d8fdd654edaf3c0300404ca07e3e (patch) | |
tree | 3a6877e15644a6da25570af9ee7aade000983ad4 /test/Fortran | |
parent | 82c2f16e53cba1a639d568fe8d6780dfe30c56ab (diff) | |
download | SCons-af962864b108d8fdd654edaf3c0300404ca07e3e.zip SCons-af962864b108d8fdd654edaf3c0300404ca07e3e.tar.gz SCons-af962864b108d8fdd654edaf3c0300404ca07e3e.tar.bz2 |
Get rid of indentation tabs in the test scripts and have runtest.py invoke them with the python -tt option to keep them out.
Diffstat (limited to 'test/Fortran')
-rw-r--r-- | test/Fortran/F77.py | 6 | ||||
-rw-r--r-- | test/Fortran/F77COM.py | 6 | ||||
-rw-r--r-- | test/Fortran/F77FLAGS.py | 6 | ||||
-rw-r--r-- | test/Fortran/F90.py | 6 | ||||
-rw-r--r-- | test/Fortran/F90COM.py | 6 | ||||
-rw-r--r-- | test/Fortran/F90FLAGS.py | 6 | ||||
-rw-r--r-- | test/Fortran/F95.py | 6 | ||||
-rw-r--r-- | test/Fortran/F95COM.py | 6 | ||||
-rw-r--r-- | test/Fortran/F95FLAGS.py | 6 | ||||
-rw-r--r-- | test/Fortran/FORTRAN.py | 6 | ||||
-rw-r--r-- | test/Fortran/FORTRANCOM.py | 6 | ||||
-rw-r--r-- | test/Fortran/FORTRANFLAGS.py | 6 | ||||
-rw-r--r-- | test/Fortran/SHF77.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHF77COM.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHF77FLAGS.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHF90.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHF90COM.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHF90FLAGS.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHF95.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHF95COM.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHF95FLAGS.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHFORTRAN.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHFORTRANCOM.py | 2 | ||||
-rw-r--r-- | test/Fortran/SHFORTRANFLAGS.py | 2 |
24 files changed, 48 insertions, 48 deletions
diff --git a/test/Fortran/F77.py b/test/Fortran/F77.py index 403f6b1..1c27def 100644 --- a/test/Fortran/F77.py +++ b/test/Fortran/F77.py @@ -52,7 +52,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -68,7 +68,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -83,7 +83,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/F77COM.py b/test/Fortran/F77COM.py index 53e0a31..9de4d17 100644 --- a/test/Fortran/F77COM.py +++ b/test/Fortran/F77COM.py @@ -52,7 +52,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -68,7 +68,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -79,7 +79,7 @@ outfile = open(sys.argv[2], 'wb') infile = open(sys.argv[3], 'rb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/F77FLAGS.py b/test/Fortran/F77FLAGS.py index 5aa8044..d50eeb9 100644 --- a/test/Fortran/F77FLAGS.py +++ b/test/Fortran/F77FLAGS.py @@ -50,7 +50,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -66,7 +66,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -83,7 +83,7 @@ outfile = open(out, 'wb') outfile.write(optstring + "\n") for l in infile.readlines(): if l[:4] != '#g77': - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/F90.py b/test/Fortran/F90.py index 7825ae6..8f8bc45 100644 --- a/test/Fortran/F90.py +++ b/test/Fortran/F90.py @@ -52,7 +52,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -68,7 +68,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -84,7 +84,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:length] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/F90COM.py b/test/Fortran/F90COM.py index da679a8..bb52340 100644 --- a/test/Fortran/F90COM.py +++ b/test/Fortran/F90COM.py @@ -52,7 +52,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -68,7 +68,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -79,7 +79,7 @@ outfile = open(sys.argv[2], 'wb') infile = open(sys.argv[3], 'rb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/F90FLAGS.py b/test/Fortran/F90FLAGS.py index 3ac5a29..69f1dfa 100644 --- a/test/Fortran/F90FLAGS.py +++ b/test/Fortran/F90FLAGS.py @@ -51,7 +51,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -67,7 +67,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -85,7 +85,7 @@ outfile = open(out, 'wb') outfile.write(optstring + "\n") for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/F95.py b/test/Fortran/F95.py index 23ed547..a19c904 100644 --- a/test/Fortran/F95.py +++ b/test/Fortran/F95.py @@ -52,7 +52,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -68,7 +68,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -84,7 +84,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:length] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/F95COM.py b/test/Fortran/F95COM.py index 14c03e6..26423f8 100644 --- a/test/Fortran/F95COM.py +++ b/test/Fortran/F95COM.py @@ -52,7 +52,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -68,7 +68,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -79,7 +79,7 @@ outfile = open(sys.argv[2], 'wb') infile = open(sys.argv[3], 'rb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/F95FLAGS.py b/test/Fortran/F95FLAGS.py index 9d958d4..883d9a3 100644 --- a/test/Fortran/F95FLAGS.py +++ b/test/Fortran/F95FLAGS.py @@ -50,7 +50,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -66,7 +66,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -84,7 +84,7 @@ outfile = open(out, 'wb') outfile.write(optstring + "\n") for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/FORTRAN.py b/test/Fortran/FORTRAN.py index 0195558..47a0a89 100644 --- a/test/Fortran/FORTRAN.py +++ b/test/Fortran/FORTRAN.py @@ -52,7 +52,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -68,7 +68,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -82,7 +82,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:4] != '#g77': - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/FORTRANCOM.py b/test/Fortran/FORTRANCOM.py index 6fbaf8f..f79ad6d 100644 --- a/test/Fortran/FORTRANCOM.py +++ b/test/Fortran/FORTRANCOM.py @@ -52,7 +52,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -68,7 +68,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -79,7 +79,7 @@ outfile = open(sys.argv[2], 'wb') infile = open(sys.argv[3], 'rb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/FORTRANFLAGS.py b/test/Fortran/FORTRANFLAGS.py index a4fb376..8d77d63 100644 --- a/test/Fortran/FORTRANFLAGS.py +++ b/test/Fortran/FORTRANFLAGS.py @@ -50,7 +50,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -66,7 +66,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:5] != '#link': - outfile.write(l) + outfile.write(l) sys.exit(0) """) @@ -83,7 +83,7 @@ outfile = open(out, 'wb') outfile.write(optstring + "\n") for l in infile.readlines(): if l[:8] != '#fortran': - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHF77.py b/test/Fortran/SHF77.py index 2f259cd..233921b 100644 --- a/test/Fortran/SHF77.py +++ b/test/Fortran/SHF77.py @@ -47,7 +47,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHF77COM.py b/test/Fortran/SHF77COM.py index 7501fbf..fa02487 100644 --- a/test/Fortran/SHF77COM.py +++ b/test/Fortran/SHF77COM.py @@ -43,7 +43,7 @@ outfile = open(sys.argv[2], 'wb') infile = open(sys.argv[3], 'rb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHF77FLAGS.py b/test/Fortran/SHF77FLAGS.py index 263e1a4..85c1168 100644 --- a/test/Fortran/SHF77FLAGS.py +++ b/test/Fortran/SHF77FLAGS.py @@ -56,7 +56,7 @@ outfile = open(out, 'wb') outfile.write(optstring + "\n") for l in infile.readlines(): if l[:4] != '#g77': - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHF90.py b/test/Fortran/SHF90.py index b14c81d..66bd68d 100644 --- a/test/Fortran/SHF90.py +++ b/test/Fortran/SHF90.py @@ -47,7 +47,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHF90COM.py b/test/Fortran/SHF90COM.py index 0ff8316..ffc9878 100644 --- a/test/Fortran/SHF90COM.py +++ b/test/Fortran/SHF90COM.py @@ -43,7 +43,7 @@ outfile = open(sys.argv[2], 'wb') infile = open(sys.argv[3], 'rb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHF90FLAGS.py b/test/Fortran/SHF90FLAGS.py index 6257adb..3997cbb 100644 --- a/test/Fortran/SHF90FLAGS.py +++ b/test/Fortran/SHF90FLAGS.py @@ -57,7 +57,7 @@ outfile = open(out, 'wb') outfile.write(optstring + "\n") for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHF95.py b/test/Fortran/SHF95.py index c95b366..d2d92a9 100644 --- a/test/Fortran/SHF95.py +++ b/test/Fortran/SHF95.py @@ -47,7 +47,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHF95COM.py b/test/Fortran/SHF95COM.py index d335083..e28f863 100644 --- a/test/Fortran/SHF95COM.py +++ b/test/Fortran/SHF95COM.py @@ -43,7 +43,7 @@ outfile = open(sys.argv[2], 'wb') infile = open(sys.argv[3], 'rb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHF95FLAGS.py b/test/Fortran/SHF95FLAGS.py index f5eb326..782a495 100644 --- a/test/Fortran/SHF95FLAGS.py +++ b/test/Fortran/SHF95FLAGS.py @@ -57,7 +57,7 @@ outfile = open(out, 'wb') outfile.write(optstring + "\n") for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHFORTRAN.py b/test/Fortran/SHFORTRAN.py index 205a761..17a58f5 100644 --- a/test/Fortran/SHFORTRAN.py +++ b/test/Fortran/SHFORTRAN.py @@ -46,7 +46,7 @@ infile = open(args[0], 'rb') outfile = open(out, 'wb') for l in infile.readlines(): if l[:8] != '#fortran': - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHFORTRANCOM.py b/test/Fortran/SHFORTRANCOM.py index 16d38a6..f4d44dc 100644 --- a/test/Fortran/SHFORTRANCOM.py +++ b/test/Fortran/SHFORTRANCOM.py @@ -43,7 +43,7 @@ outfile = open(sys.argv[2], 'wb') infile = open(sys.argv[3], 'rb') for l in infile.readlines(): if l[:len(comment)] != comment: - outfile.write(l) + outfile.write(l) sys.exit(0) """) diff --git a/test/Fortran/SHFORTRANFLAGS.py b/test/Fortran/SHFORTRANFLAGS.py index 1e4dc76..e96ade9 100644 --- a/test/Fortran/SHFORTRANFLAGS.py +++ b/test/Fortran/SHFORTRANFLAGS.py @@ -56,7 +56,7 @@ outfile = open(out, 'wb') outfile.write(optstring + "\n") for l in infile.readlines(): if l[:8] != '#fortran': - outfile.write(l) + outfile.write(l) sys.exit(0) """) |