[pypy-svn] r58565 - pypy/branch/gc-experiments/pypy/translator/c/test

fijal at codespeak.net fijal at codespeak.net
Thu Oct 2 13:08:23 CEST 2008


Author: fijal
Date: Thu Oct  2 13:08:23 2008
New Revision: 58565

Modified:
   pypy/branch/gc-experiments/pypy/translator/c/test/test_newgc.py
Log:
Add markcompact tests here


Modified: pypy/branch/gc-experiments/pypy/translator/c/test/test_newgc.py
==============================================================================
--- pypy/branch/gc-experiments/pypy/translator/c/test/test_newgc.py	(original)
+++ pypy/branch/gc-experiments/pypy/translator/c/test/test_newgc.py	Thu Oct  2 13:08:23 2008
@@ -1028,3 +1028,13 @@
 
     def test_gc_set_max_heap_size(self):
         py.test.skip("not implemented")
+
+class TestMarkCompactGC(TestSemiSpaceGC):
+    gcpolicy = "markcompact"
+    should_be_moving = True
+
+    def test_gc_set_max_heap_size(self):
+        py.test.skip("not implemented")
+
+    def test_finalizer_order(self):
+        py.test.skip("not implemented")



More information about the Pypy-commit mailing list