[pypy-commit] pypy default: Run the tests here with "--jit disable_unrolling=9999"

arigo noreply at buildbot.pypy.org
Sat Jun 13 11:14:30 CEST 2015


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r78077:c4e72b72dc51
Date: 2015-06-13 10:48 +0200
http://bitbucket.org/pypy/pypy/changeset/c4e72b72dc51/

Log:	Run the tests here with "--jit disable_unrolling=9999"

diff --git a/pypy/module/pypyjit/test_pypy_c/test_00_model.py b/pypy/module/pypyjit/test_pypy_c/test_00_model.py
--- a/pypy/module/pypyjit/test_pypy_c/test_00_model.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_00_model.py
@@ -28,6 +28,7 @@
     def run(self, func_or_src, args=[], import_site=False,
             discard_stdout_before_last_line=False, **jitopts):
         jitopts.setdefault('threshold', 200)
+        jitopts.setdefault('disable_unrolling', 9999)
         src = py.code.Source(func_or_src)
         if isinstance(func_or_src, types.FunctionType):
             funcname = func_or_src.func_name


More information about the pypy-commit mailing list