Disable MCJIT test on windows 64-bit (#79)
This commit is contained in:
parent
351bd39814
commit
536bc37c94
1 changed files with 4 additions and 3 deletions
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue