summaryrefslogtreecommitdiff
path: root/test/ToolSurrogate.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2008-09-08 05:00:22 +0000
committerSteven Knight <knight@baldmt.com>2008-09-08 05:00:22 +0000
commit1b2cfaee58b561013d202599a16a6f611a3efc0b (patch)
treee022adaf40a0377b4503150be6f2b9428df823de /test/ToolSurrogate.py
parent30383787b2fc3fcd56f9fdc696126652135f5d0e (diff)
downloadscons-1b2cfaee58b561013d202599a16a6f611a3efc0b.tar.gz
Accommodate earlier change in the order of arguments on a Windows
compilation command line.
Diffstat (limited to 'test/ToolSurrogate.py')
-rw-r--r--test/ToolSurrogate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ToolSurrogate.py b/test/ToolSurrogate.py
index 527e3d33..5db156ea 100644
--- a/test/ToolSurrogate.py
+++ b/test/ToolSurrogate.py
@@ -94,7 +94,7 @@ cc -o foo.exe foo.obj
test.write('foo.c', "foo.c win32\n")
test.run(arguments = '. platform=win32', stdout = test.wrap_stdout("""\
-cl /nologo /c foo.c /Fofoo.obj
+cl /Fofoo.obj /c foo.c /nologo
link /nologo /OUT:foo.exe foo.obj
"""))