[pypy-commit] pypy gc-del: Use minimark here.

arigo noreply at buildbot.pypy.org
Sat Apr 27 13:42:30 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: gc-del
Changeset: r63688:94a009fde44c
Date: 2013-04-27 13:38 +0200
http://bitbucket.org/pypy/pypy/changeset/94a009fde44c/

Log:	Use minimark here.

diff --git a/pypy/module/thread/test/test_gil.py b/pypy/module/thread/test/test_gil.py
--- a/pypy/module/thread/test/test_gil.py
+++ b/pypy/module/thread/test/test_gil.py
@@ -111,5 +111,5 @@
         return f
 
 class TestUsingFramework(GILTests):
-    gcpolicy = 'generation'
+    gcpolicy = 'minimark'
     bigtest = True
diff --git a/rpython/rlib/test/test_rthread.py b/rpython/rlib/test/test_rthread.py
--- a/rpython/rlib/test/test_rthread.py
+++ b/rpython/rlib/test/test_rthread.py
@@ -209,4 +209,4 @@
     gcpolicy = 'boehm'
 
 class TestUsingFramework(AbstractThreadTests):
-    gcpolicy = 'generation'
+    gcpolicy = 'minimark'


More information about the pypy-commit mailing list