[pypy-commit] pypy stmgc-c4: Fix

arigo noreply at buildbot.pypy.org
Thu Sep 5 17:38:24 CEST 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: stmgc-c4
Changeset: r66811:ba68bc62d2f3
Date: 2013-09-05 17:37 +0200
http://bitbucket.org/pypy/pypy/changeset/ba68bc62d2f3/

Log:	Fix

diff --git a/rpython/jit/backend/x86/test/test_runner.py b/rpython/jit/backend/x86/test/test_runner.py
--- a/rpython/jit/backend/x86/test/test_runner.py
+++ b/rpython/jit/backend/x86/test/test_runner.py
@@ -427,8 +427,8 @@
         debug._log = None
         #
         assert ops_offset is looptoken._x86_ops_offset
-        # 2*(getfield_raw/int_add/setfield_raw) + ops + None
-        assert len(ops_offset) == 2*3 + len(operations) + 1
+        # 2*[INCREMENT_DEBUG_COUNTER] + ops + None
+        assert len(ops_offset) == 2 + len(operations) + 1
         assert (ops_offset[operations[0]] <=
                 ops_offset[operations[1]] <=
                 ops_offset[operations[2]] <=


More information about the pypy-commit mailing list