[pypy-svn] r55040 - pypy/branch/hybrid-io/pypy/translator/c/test

fijal at codespeak.net fijal at codespeak.net
Tue May 20 20:53:17 CEST 2008


Author: fijal
Date: Tue May 20 20:53:16 2008
New Revision: 55040

Modified:
   pypy/branch/hybrid-io/pypy/translator/c/test/test_newgc.py
Log:
Wuaaa! Don't skip this test.


Modified: pypy/branch/hybrid-io/pypy/translator/c/test/test_newgc.py
==============================================================================
--- pypy/branch/hybrid-io/pypy/translator/c/test/test_newgc.py	(original)
+++ pypy/branch/hybrid-io/pypy/translator/c/test/test_newgc.py	Tue May 20 20:53:16 2008
@@ -1007,7 +1007,9 @@
             s.append_multiple_char('y', 1000)
             gc.collect()
             s.append_multiple_char('y', 1000)
-            return s.build()
+            res = s.build()
+            gc.collect()
+            return res
         c_fn = self.getcompiled(fn)
         res = c_fn()
         assert res[1000] == 'y'
@@ -1021,8 +1023,5 @@
     should_be_moving = True
     GC_CANNOT_MALLOC_NONMOVABLE = False
 
-    def test_string_builder_over_allocation(self):
-        py.test.skip("Segfaulting")
-
     def test_gc_set_max_heap_size(self):
         py.test.skip("not implemented")



More information about the Pypy-commit mailing list