Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r62437:cc48c9196071
Date: 2013-03-18 22:06 -0700
http://bitbucket.org/pypy/pypy/changeset/cc48c9196071/

Log:    skip this test on 32bit

diff --git a/rpython/jit/backend/test/calling_convention_test.py 
b/rpython/jit/backend/test/calling_convention_test.py
--- a/rpython/jit/backend/test/calling_convention_test.py
+++ b/rpython/jit/backend/test/calling_convention_test.py
@@ -381,6 +381,8 @@
         raise NotImplementedError
 
     def test_call_aligned_explicit_check(self):
+        if sys.maxint == 2 ** 31 - 1:
+            py.test.skip("libffi on 32bit is broken")
         cpu = self.cpu
         if not cpu.supports_floats:
             py.test.skip('requires floats')
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to