diff options
author | Steven Knight <knight@baldmt.com> | 2002-10-03 21:01:02 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2002-10-03 21:01:02 (GMT) |
commit | 313be3374d81ff22c10b8ec09c465cabd835062f (patch) | |
tree | 9385dedc5fcd031f98ebd15791c5c15c62303144 /test/win32pathmadness.py | |
parent | dffe09bd431aeeb996ad14763154abe5c412b93e (diff) | |
download | SCons-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.py | 8 |
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. -""") +""")) |