diff options
Diffstat (limited to 'test/IDL')
-rw-r--r-- | test/IDL/midl.py | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/test/IDL/midl.py b/test/IDL/midl.py index 0322483..7ada153 100644 --- a/test/IDL/midl.py +++ b/test/IDL/midl.py @@ -25,20 +25,12 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import os -import sys import TestSCons test = TestSCons.TestSCons(match = TestSCons.match_re) -if sys.platform != 'win32': - msg = "Skipping 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 |