[pypy-svn] r58807 - pypy/branch/gc-experiments/pypy/rpython/memory/test

arigo at codespeak.net arigo at codespeak.net
Wed Oct 8 13:49:55 CEST 2008


Author: arigo
Date: Wed Oct  8 13:49:55 2008
New Revision: 58807

Modified:
   pypy/branch/gc-experiments/pypy/rpython/memory/test/test_gc.py
Log:
This test just passes, now that the hacks in MovingGCBase.id() have
been killed long ago.


Modified: pypy/branch/gc-experiments/pypy/rpython/memory/test/test_gc.py
==============================================================================
--- pypy/branch/gc-experiments/pypy/rpython/memory/test/test_gc.py	(original)
+++ pypy/branch/gc-experiments/pypy/rpython/memory/test/test_gc.py	Wed Oct  8 13:49:55 2008
@@ -263,10 +263,6 @@
         assert res
 
     def test_id(self):
-        py.test.skip("the MovingGCBase.id() logic can't be directly run")
-        # XXX ^^^ the problem is that the MovingGCBase instance holds
-        # references to GC objects - a list of weakrefs and a dict - and
-        # there is no way we can return these from get_roots_from_llinterp().
         class A(object):
             pass
         a1 = A()



More information about the Pypy-commit mailing list