[pypy-svn] r71450 - pypy/branch/gc-better-hash/pypy/rpython/memory/gc/test

arigo at codespeak.net arigo at codespeak.net
Wed Feb 24 16:53:36 CET 2010


Author: arigo
Date: Wed Feb 24 16:53:35 2010
New Revision: 71450

Modified:
   pypy/branch/gc-better-hash/pypy/rpython/memory/gc/test/test_direct.py
Log:
Skip the test on top of the hybrid GC, because I don't
feel like at all supporting raw_malloc() of a size of
the kind 'sizeof(S) + sizeof(Signed)'.


Modified: pypy/branch/gc-better-hash/pypy/rpython/memory/gc/test/test_direct.py
==============================================================================
--- pypy/branch/gc-better-hash/pypy/rpython/memory/gc/test/test_direct.py	(original)
+++ pypy/branch/gc-better-hash/pypy/rpython/memory/gc/test/test_direct.py	Wed Feb 24 16:53:35 2010
@@ -421,6 +421,9 @@
         assert calls == [('semispace_collect', True)]
         calls = []
 
+    def test_identityhash(self):
+        py.test.skip("does not support raw_mallocs(sizeof(S)+sizeof(hash))")
+
 
 class TestMarkCompactGC(DirectGCTest):
     from pypy.rpython.memory.gc.markcompact import MarkCompactGC as GCClass



More information about the Pypy-commit mailing list