[pypy-commit] pypy default: fix test: now only three residual calls instead of four

arigo pypy.commits at gmail.com
Mon Feb 6 03:01:38 EST 2017


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r89964:bff2e6940cc6
Date: 2017-02-06 09:00 +0100
http://bitbucket.org/pypy/pypy/changeset/bff2e6940cc6/

Log:	fix test: now only three residual calls instead of four

diff --git a/rpython/jit/metainterp/test/test_dict.py b/rpython/jit/metainterp/test/test_dict.py
--- a/rpython/jit/metainterp/test/test_dict.py
+++ b/rpython/jit/metainterp/test/test_dict.py
@@ -364,7 +364,7 @@
                     if n in mdict:
                         raise Exception
         self.meta_interp(f, [10])
-        self.check_simple_loop(call_may_force_i=0, call_i=3, call_n=1)
+        self.check_simple_loop(call_may_force_i=0, call_i=2, call_n=1)
 
     def test_dict_virtual(self):
         myjitdriver = JitDriver(greens = [], reds = 'auto')


More information about the pypy-commit mailing list