[pypy-svn] r65271 - in pypy/branch/pyjitpl5/pypy: config jit/backend/cli/test jit/backend/test
antocuni at codespeak.net
antocuni at codespeak.net
Fri May 15 18:12:58 CEST 2009
Author: antocuni
Date: Fri May 15 18:12:56 2009
New Revision: 65271
Modified:
pypy/branch/pyjitpl5/pypy/config/translationoption.py
pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_basic.py
pypy/branch/pyjitpl5/pypy/jit/backend/test/support.py
Log:
some tests failed because the gc was set to "ref"; fix that, and skip other tests that are still failing
Modified: pypy/branch/pyjitpl5/pypy/config/translationoption.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/config/translationoption.py (original)
+++ pypy/branch/pyjitpl5/pypy/config/translationoption.py Fri May 15 18:12:56 2009
@@ -30,6 +30,7 @@
("translation.backendopt.heap2stack", False),
("translation.backendopt.clever_malloc_removal", False),
("translation.list_comprehension_operations", False),
+ ("translation.gc", "generation"), # it's not really used, but some jit code expects a value here
]
}),
ChoiceOption("backend", "Backend to use for code generation",
Modified: pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_basic.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_basic.py (original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/cli/test/test_zrpy_basic.py Fri May 15 18:12:56 2009
@@ -26,3 +26,6 @@
test_bridge_from_interpreter_2 = skip
test_bridge_from_interpreter_3 = skip
test_bridge_from_interpreter_4 = skip
+ test_bridge_leaving_interpreter_5 = skip
+ test_free_object = skip
+ test_we_are_jitted = skip
Modified: pypy/branch/pyjitpl5/pypy/jit/backend/test/support.py
==============================================================================
--- pypy/branch/pyjitpl5/pypy/jit/backend/test/support.py (original)
+++ pypy/branch/pyjitpl5/pypy/jit/backend/test/support.py Fri May 15 18:12:56 2009
@@ -24,6 +24,7 @@
assert isinstance(arg, int)
t = self._get_TranslationContext()
+ t.config.translation.type_system = self.type_system # force typesystem-specific options
if repeat != 1:
src = py.code.Source("""
def entry_point(argv):
More information about the Pypy-commit
mailing list