[pypy-svn] r39792 - pypy/dist/pypy/translator/llvm/test

mwh at codespeak.net mwh at codespeak.net
Sat Mar 3 13:52:44 CET 2007


Author: mwh
Date: Sat Mar  3 13:52:41 2007
New Revision: 39792

Modified:
   pypy/dist/pypy/translator/llvm/test/test_gc.py
Log:
(rxe, mwh)
rewrite an insane line, and enable the refcounting test again (it passes now,
no idea when it started doing so)


Modified: pypy/dist/pypy/translator/llvm/test/test_gc.py
==============================================================================
--- pypy/dist/pypy/translator/llvm/test/test_gc.py	(original)
+++ pypy/dist/pypy/translator/llvm/test/test_gc.py	Sat Mar  3 13:52:41 2007
@@ -21,7 +21,7 @@
     n = 5000
     result = tuple_getitem(n)
     assert f(n) == result
-    get_heap_size = getattr(mod, "GC_get_heap_size_wrapper")
+    get_heap_size = mod.GC_get_heap_size_wrapper
     heap_size_start = get_heap_size()
     for i in range(0,25):
         assert f(n) == result
@@ -41,7 +41,6 @@
     assert f(5000) == tuple_getitem(5000)
 
 def test_ref(): 
-    py.test.skip("broken by r32613, partially fixed by r32619 but not really")
     def tuple_getitem(n): 
         x = 666
         i = 0



More information about the Pypy-commit mailing list