From 536bc37c9499f464ee07d1bce96f686702a2f4df Mon Sep 17 00:00:00 2001 From: Siu Kwan Lam Date: Thu, 22 Aug 2013 14:13:17 -0500 Subject: [PATCH] Disable MCJIT test on windows 64-bit (#79) --- llvm/test_llvmpy.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/llvm/test_llvmpy.py b/llvm/test_llvmpy.py index 3b8aebf..2764cf2 100644 --- a/llvm/test_llvmpy.py +++ b/llvm/test_llvmpy.py @@ -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)