Kaydet (Commit) fde5b803 authored tarafından Hirokazu Yamamoto's avatar Hirokazu Yamamoto

Issue #4864: test_msvc9compiler failed on VC6/7.

Reviewed by Amaury Forgeot d'Arc.
üst 09cafb63
......@@ -13,6 +13,10 @@ class msvc9compilerTestCase(unittest.TestCase):
if sys.platform != 'win32':
# this test is only for win32
return
from distutils.msvccompiler import get_build_version
if get_build_version() < 8.0:
# this test is only for MSVC8.0 or above
return
from distutils.msvc9compiler import query_vcvarsall
def _find_vcvarsall(version):
return None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment