Author: David Schneider <[email protected]>
Branch: arm-backend-2
Changeset: r56755:d94caa31c991
Date: 2012-08-19 13:27 +0200
http://bitbucket.org/pypy/pypy/changeset/d94caa31c991/

Log:    enable some translation tests to be run nightly

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,7 +12,6 @@
 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()
@@ -102,6 +101,7 @@
     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,6 +206,7 @@
         return t
 
     def test_external_exception_handling_translates(self):
+        skip_unless_run_slow_tests()
         jitdriver = JitDriver(greens = [], reds = ['n', 'total'])
 
         class ImDone(Exception):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to