diff options
Diffstat (limited to 'test/MSVS/vs-6.0-variant_dir.py')
-rw-r--r-- | test/MSVS/vs-6.0-variant_dir.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/MSVS/vs-6.0-variant_dir.py b/test/MSVS/vs-6.0-variant_dir.py index d248e6f..71ed3ac 100644 --- a/test/MSVS/vs-6.0-variant_dir.py +++ b/test/MSVS/vs-6.0-variant_dir.py @@ -30,9 +30,15 @@ Test that we can generate Visual Studio 6 project (.dsp) and solution """ import TestSConsMSVS +import sys + test = TestSConsMSVS.TestSConsMSVS() +if sys.platform != 'win32': + msg = "Skipping Visual Studio test on non-Windows platform '%s'\n" % sys.platform + test.skip_test(msg) + # Make the test infrastructure think we have this version of MSVS installed. test._msvs_versions = ['6.0'] |