Win32 portability in test/Program.py.
authorstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 16 Jan 2004 13:28:44 +0000 (13:28 +0000)
committerstevenknight <stevenknight@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 16 Jan 2004 13:28:44 +0000 (13:28 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@881 fdb21ef1-2011-0410-befe-b5e4ea1792b1

test/Program.py

index 7c0eb462fc2b28fb4692499b5c48d6f0387171f4..91f391ee8604fe0f685959fe0525fc541944c085 100644 (file)
@@ -334,10 +334,12 @@ file2 = File('file2.c')
 Program('foo', [file1, [file2, 'file3.c']])
 """)
 
+foo_exe = 'foo'+_exe
+
 test.run(status = 2, stderr = """
-scons: *** attempted to add a non-Node as source of foo:
+scons: *** attempted to add a non-Node as source of %s:
 \t['file2.c', 'file3.c'] is a <type 'list'>, not a Node
 File "SConstruct", line 3, in ?
-""")
+""" % foo_exe)
 
 test.pass_test()