summaryrefslogtreecommitdiffstats
path: root/test/win32pathmadness.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-10-03 21:01:02 (GMT)
committerSteven Knight <knight@baldmt.com>2002-10-03 21:01:02 (GMT)
commit313be3374d81ff22c10b8ec09c465cabd835062f (patch)
tree9385dedc5fcd031f98ebd15791c5c15c62303144 /test/win32pathmadness.py
parentdffe09bd431aeeb996ad14763154abe5c412b93e (diff)
downloadSCons-313be3374d81ff22c10b8ec09c465cabd835062f.zip
SCons-313be3374d81ff22c10b8ec09c465cabd835062f.tar.gz
SCons-313be3374d81ff22c10b8ec09c465cabd835062f.tar.bz2
Add MSVC PCH and PDB support. (Anthony Roach)
Diffstat (limited to 'test/win32pathmadness.py')
-rw-r--r--test/win32pathmadness.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/win32pathmadness.py b/test/win32pathmadness.py
index cb6cb57..2e5b6e5 100644
--- a/test/win32pathmadness.py
+++ b/test/win32pathmadness.py
@@ -91,11 +91,11 @@ upper = os.path.join(string.upper(drive),rest)
lower = os.path.join(string.lower(drive),rest)
test.run(chdir=upper)
-test.run(chdir=lower, stdout="""\
+test.run(chdir=lower, stdout=test.wrap_stdout("""\
scons: .* is up to date.
scons: .* is up to date.
scons: .* is up to date.
-""")
+"""))
test.write('SConstruct', """
env=Environment()
@@ -122,10 +122,10 @@ test.write('b.h', """
""")
test.run(arguments='a.lib b.lib')
-test.run(arguments='b.lib a.lib', stdout="""\
+test.run(arguments='b.lib a.lib', stdout=test.wrap_stdout("""\
scons: .* is up to date.
scons: .* is up to date.
-""")
+"""))