diff options
Diffstat (limited to 'test/MSVC/query_vcbat.py')
-rw-r--r-- | test/MSVC/query_vcbat.py | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/test/MSVC/query_vcbat.py b/test/MSVC/query_vcbat.py index f07f780..328345d 100644 --- a/test/MSVC/query_vcbat.py +++ b/test/MSVC/query_vcbat.py @@ -23,20 +23,11 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" -import sys - import TestSCons test = TestSCons.TestSCons(match = TestSCons.match_re) -if sys.platform != 'win32': - msg = "Skipping Visual C/C++ test on non-Windows platform '%s'\n" % sys.platform - test.skip_test(msg) - -import SCons.Tool.MSCommon as msc -if not msc.msvc_exists(): - msg = "No MSVC toolchain found...skipping test\n" - test.skip_test(msg) +test.skip_if_not_msvc() ##### # Test the basics |