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 | 363f4dd969747edcc783584138a8daf018417a47 (patch) | |
tree | 27a3ab63f74f7693bb5954d60dae2cb0a09cb937 /test/mingw.py | |
parent | d8075b1a39a6d29bf2724e02a7b27dc35f794b70 (diff) | |
download | SCons-363f4dd969747edcc783584138a8daf018417a47.zip SCons-363f4dd969747edcc783584138a8daf018417a47.tar.gz SCons-363f4dd969747edcc783584138a8daf018417a47.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/mingw.py')
-rw-r--r-- | test/mingw.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/mingw.py b/test/mingw.py index 6db5cc1..d2039b5 100644 --- a/test/mingw.py +++ b/test/mingw.py @@ -40,7 +40,8 @@ test = TestSCons.TestSCons(match = TestCmd.match_re_dotall) # MinGW is win32 only: if sys.platform != 'win32': - test.pass_test() + msg = "Skipping mingw test on non-Windows platform '%s'\n" % sys.platform + test.skip_test(msg) # This test requires MingW to be installed: test.write('SConstruct',""" |