diff options
author | Steven Knight <knight@baldmt.com> | 2003-08-01 10:45:03 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2003-08-01 10:45:03 (GMT) |
commit | e3bc52ed9dc060e3e1fe563d1a125b8ed6a1fce8 (patch) | |
tree | 858f1eeb240c7671a1c84337a85c471d06c9d858 /test/bad-drive.py | |
parent | 75a074d126ff285d21033ea39a962023f785089f (diff) | |
download | SCons-e3bc52ed9dc060e3e1fe563d1a125b8ed6a1fce8.zip SCons-e3bc52ed9dc060e3e1fe563d1a125b8ed6a1fce8.tar.gz SCons-e3bc52ed9dc060e3e1fe563d1a125b8ed6a1fce8.tar.bz2 |
Add /TP to CXXFLAGS for msvc. Win32 portability fixes for tests.
Diffstat (limited to 'test/bad-drive.py')
-rw-r--r-- | test/bad-drive.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bad-drive.py b/test/bad-drive.py index 56f2127..d7a820f 100644 --- a/test/bad-drive.py +++ b/test/bad-drive.py @@ -86,7 +86,7 @@ test.run(arguments = 'aaa.out') test.fail_test(test.read('aaa.out') != "aaa.in\n") test.run(arguments = bad_drive + 'not_mentioned', - stderr = "scons: *** Do not know how to make target `%snot_mentioned'. Stop.\n" % bad_drive, + stderr = "scons: *** No drive `%s' for target `%snot_mentioned'. Stop.\n" % (bad_drive, bad_drive), status = 2) test.run(arguments = bad_drive + 'no_target_1', |