[pypy-commit] pypy default: fix?

arigo noreply at buildbot.pypy.org
Fri Dec 23 15:27:52 CET 2011


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r50834:532130e19935
Date: 2011-12-23 15:27 +0100
http://bitbucket.org/pypy/pypy/changeset/532130e19935/

Log:	fix?

diff --git a/pypy/jit/backend/x86/test/test_zrpy_platform.py b/pypy/jit/backend/x86/test/test_zrpy_platform.py
--- a/pypy/jit/backend/x86/test/test_zrpy_platform.py
+++ b/pypy/jit/backend/x86/test/test_zrpy_platform.py
@@ -74,8 +74,8 @@
     myjitdriver = jit.JitDriver(greens = [], reds = ['n'])
 
     def entrypoint(argv):
-        myjitdriver.set_param('threshold', 2)
-        myjitdriver.set_param('trace_eagerness', 0)
+        jit.set_param(myjitdriver, 'threshold', 2)
+        jit.set_param(myjitdriver, 'trace_eagerness', 0)
         n = 16
         while n > 0:
             myjitdriver.can_enter_jit(n=n)


More information about the pypy-commit mailing list