diff options
author | Steven Knight <knight@baldmt.com> | 2005-08-20 04:13:59 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2005-08-20 04:13:59 (GMT) |
commit | 3a5d4f0de360edb40bc68af414b275849ca92690 (patch) | |
tree | 27a3ab63f74f7693bb5954d60dae2cb0a09cb937 /test/bad-drive.py | |
parent | 39df5bda1a547cb8b70cf8a71e6b7fa8a43df723 (diff) | |
download | SCons-3a5d4f0de360edb40bc68af414b275849ca92690.zip SCons-3a5d4f0de360edb40bc68af414b275849ca92690.tar.gz SCons-3a5d4f0de360edb40bc68af414b275849ca92690.tar.bz2 |
Have Visual Studio echo that we're using SCons to build things, to work around a quoting issue. (Shannon Mann)
Diffstat (limited to 'test/bad-drive.py')
-rw-r--r-- | test/bad-drive.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/bad-drive.py b/test/bad-drive.py index 1b733a5..35b3b38 100644 --- a/test/bad-drive.py +++ b/test/bad-drive.py @@ -40,7 +40,8 @@ import TestSCons test = TestSCons.TestSCons() if sys.platform != 'win32': - test.pass_test() + msg = "Skipping drive-letter test on non-Windows platform '%s'\n" % sys.platform + test.skip_test(msg) bad_drive = None for i in range(len(string.uppercase)-1, -1, -1): |