[pypy-commit] pypy arm-backend-2: Backed out changeset d94caa31c991 - it kills the boards when run in combination with the other tests

bivab noreply at buildbot.pypy.org
Mon Aug 20 11:36:14 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: arm-backend-2
Changeset: r56764:9fa47569a231
Date: 2012-08-20 11:09 +0200
http://bitbucket.org/pypy/pypy/changeset/9fa47569a231/

Log:	Backed out changeset d94caa31c991 - it kills the boards when run in
	combination with the other tests

diff --git a/pypy/jit/backend/arm/test/test_ztranslation.py b/pypy/jit/backend/arm/test/test_ztranslation.py
--- a/pypy/jit/backend/arm/test/test_ztranslation.py
+++ b/pypy/jit/backend/arm/test/test_ztranslation.py
@@ -12,6 +12,7 @@
 from pypy.config.translationoption import DEFL_GC
 from pypy.rlib import rgc
 from pypy.jit.backend.arm.test.support import skip_unless_run_slow_tests
+skip_unless_run_slow_tests()
 
 class TestTranslationARM(CCompiledMixin):
     CPUClass = getcpuclass()
@@ -101,7 +102,6 @@
     def test_direct_assembler_call_translates(self):
         """Test CALL_ASSEMBLER and the recursion limit"""
         from pypy.rlib.rstackovf import StackOverflow
-        skip_unless_run_slow_tests()
 
         class Thing(object):
             def __init__(self, val):
@@ -206,7 +206,6 @@
         return t
 
     def test_external_exception_handling_translates(self):
-        skip_unless_run_slow_tests()
         jitdriver = JitDriver(greens = [], reds = ['n', 'total'])
 
         class ImDone(Exception):


More information about the pypy-commit mailing list