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

arigo at codespeak.net arigo at codespeak.net
Mon Jun 15 20:38:16 CEST 2009


Author: arigo
Date: Mon Jun 15 20:38:13 2009
New Revision: 65783

Modified:
   pypy/trunk/pypy/translator/c/test/test_newgc.py
Log:
This skipped test passes just fine, it's just not testing much at all.
So let's remove it.  This file already takes ages to run...


Modified: pypy/trunk/pypy/translator/c/test/test_newgc.py
==============================================================================
--- pypy/trunk/pypy/translator/c/test/test_newgc.py	(original)
+++ pypy/trunk/pypy/translator/c/test/test_newgc.py	Mon Jun 15 20:38:13 2009
@@ -655,19 +655,6 @@
         res = fn()
         assert res == 123
 
-    def test_framework_malloc_gc(self):
-        py.test.skip('in-progress')
-        A = lltype.GcStruct('A', ('value', lltype.Signed))
-
-        def f():
-            p = lltype.malloc(A, flavor='gc')
-            p.value = 123
-            llop.gc__collect(lltype.Void)
-            return p.value
-        fn = self.getcompiled(f)
-        res = fn()
-        assert res == 123
-
     def test_framework_del_seeing_new_types(self):
         class B(object):
             pass



More information about the Pypy-commit mailing list