Disable MCJIT test on windows 64-bit (#79)

This commit is contained in:
Siu Kwan Lam 2013-08-22 14:13:17 -05:00
commit 536bc37c94

View file

@ -1410,9 +1410,10 @@ class TestMCJIT(TestCase):
self.assertEqual(321 + 123, callee(321, 123))
if llvm.version >= (3, 3):
# MCJIT broken in 3.2
# The test will segfault in OSX?
if (llvm.version >= (3, 3) and
not (sys.platform.startswith('win32') and BITS == 64)):
# MCJIT broken in 3.2, the test will segfault in OSX?
# Compatbility problem on windows 7 64-bit?
tests.append(TestMCJIT)