summaryrefslogtreecommitdiff
path: root/test/Fortran
diff options
context:
space:
mode:
authordirkbaechle <devnull@localhost>2012-09-05 01:23:13 +0200
committerdirkbaechle <devnull@localhost>2012-09-05 01:23:13 +0200
commit8d53f8adbaa758c53da24f7aa0f44e905137f2f3 (patch)
tree5d422a83251e4afe9a3941b3bb97a79fdb38765f /test/Fortran
parente7bd33843093affec4fc9d182613248f19ca9e10 (diff)
downloadscons-8d53f8adbaa758c53da24f7aa0f44e905137f2f3.tar.gz
- first swoop of changes for getting all Buildbot slaves to run successfully again
Diffstat (limited to 'test/Fortran')
-rw-r--r--test/Fortran/common.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Fortran/common.py b/test/Fortran/common.py
index b48c83b6..6763ef4b 100644
--- a/test/Fortran/common.py
+++ b/test/Fortran/common.py
@@ -38,7 +38,11 @@ import sys
args = sys.argv[1:]
while args:
a = args[0]
- if a[0] != '/':
+ if a == '-o':
+ out = args[1]
+ args = args[2:]
+ continue
+ if not a[0] in '/-':
break
args = args[1:]
if a[:5].lower() == '/out:': out = a[5:]