[pypy-commit] pypy optresult-unroll: fix?

fijal noreply at buildbot.pypy.org
Mon Aug 31 10:27:48 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: optresult-unroll
Changeset: r79311:6a2ee3a1f8da
Date: 2015-08-31 10:27 +0200
http://bitbucket.org/pypy/pypy/changeset/6a2ee3a1f8da/

Log:	fix?

diff --git a/rpython/jit/metainterp/test/test_virtual.py b/rpython/jit/metainterp/test/test_virtual.py
--- a/rpython/jit/metainterp/test/test_virtual.py
+++ b/rpython/jit/metainterp/test/test_virtual.py
@@ -919,7 +919,7 @@
         assert res == f(10)
         self.check_aborted_count(0)
         self.check_target_token_count(3)
-        self.check_resops(int_mul=2)
+        self.check_resops(int_mul=3)
 
     def test_nested_loops_bridge(self):
         class Int(object):
@@ -963,7 +963,7 @@
         res = self.meta_interp(f, [32])
         assert res == f(32)
         self.check_aborted_count(0)
-        self.check_target_token_count(3)
+        self.check_target_token_count(4)
 
 
 class VirtualMiscTests:


More information about the pypy-commit mailing list