[pypy-svn] r77408 - pypy/branch/minimark-jit/pypy/jit/backend/x86/test

arigo at codespeak.net arigo at codespeak.net
Mon Sep 27 14:11:04 CEST 2010


Author: arigo
Date: Mon Sep 27 14:11:03 2010
New Revision: 77408

Modified:
   pypy/branch/minimark-jit/pypy/jit/backend/x86/test/test_zrpy_gc.py
   pypy/branch/minimark-jit/pypy/jit/backend/x86/test/test_ztranslation.py
Log:
Change (arbitrarily) one of the test files to use minimark instead of
the hybrid GC.


Modified: pypy/branch/minimark-jit/pypy/jit/backend/x86/test/test_zrpy_gc.py
==============================================================================
--- pypy/branch/minimark-jit/pypy/jit/backend/x86/test/test_zrpy_gc.py	(original)
+++ pypy/branch/minimark-jit/pypy/jit/backend/x86/test/test_zrpy_gc.py	Mon Sep 27 14:11:03 2010
@@ -127,6 +127,8 @@
 # ______________________________________________________________________
 
 class TestCompileHybrid(object):
+    # Test suite using the hybrid GC.  We should ideally also have one
+    # using the minimark GC, but these tests take forever...
     def setup_class(cls):
         funcs = []
         name_to_func = {}

Modified: pypy/branch/minimark-jit/pypy/jit/backend/x86/test/test_ztranslation.py
==============================================================================
--- pypy/branch/minimark-jit/pypy/jit/backend/x86/test/test_ztranslation.py	(original)
+++ pypy/branch/minimark-jit/pypy/jit/backend/x86/test/test_ztranslation.py	Mon Sep 27 14:11:03 2010
@@ -118,7 +118,7 @@
 
     def _get_TranslationContext(self):
         t = TranslationContext()
-        t.config.translation.gc = 'hybrid'
+        t.config.translation.gc = 'minimark'
         t.config.translation.gcrootfinder = 'asmgcc'
         t.config.translation.list_comprehension_operations = True
         t.config.translation.gcremovetypeptr = True



More information about the Pypy-commit mailing list