[pypy-svn] r70903 - pypy/trunk/pypy/translator/c/test

arigo at codespeak.net arigo at codespeak.net
Wed Jan 27 10:10:13 CET 2010


Author: arigo
Date: Wed Jan 27 10:10:12 2010
New Revision: 70903

Modified:
   pypy/trunk/pypy/translator/c/test/test_lladdresses.py
Log:
Skip a test on Mac OS/X.  It causes a later crash, and I think that
Boehm is in cause.


Modified: pypy/trunk/pypy/translator/c/test/test_lladdresses.py
==============================================================================
--- pypy/trunk/pypy/translator/c/test/test_lladdresses.py	(original)
+++ pypy/trunk/pypy/translator/c/test/test_lladdresses.py	Wed Jan 27 10:10:12 2010
@@ -1,4 +1,4 @@
-import py
+import py, sys
 from pypy.rpython.lltypesystem.llmemory import *
 from pypy.annotation.model import SomeAddress, SomeChar
 from pypy.translator.c.test.test_genc import compile
@@ -154,6 +154,8 @@
     assert fn(1) == 2
 
 def test_gcref():
+    if sys.platform == 'darwin':
+        py.test.skip("'boehm' may crash")
     S = lltype.GcStruct("S", ("x", lltype.Signed))
     s = lltype.malloc(S)
     s.x = 123



More information about the Pypy-commit mailing list