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

fijal noreply at buildbot.pypy.org
Tue Sep 8 10:37:30 CEST 2015


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: optresult-unroll
Changeset: r79523:8d7bfab5c466
Date: 2015-09-08 10:37 +0200
http://bitbucket.org/pypy/pypy/changeset/8d7bfab5c466/

Log:	fix test

diff --git a/rpython/jit/backend/x86/test/test_recursive.py b/rpython/jit/backend/x86/test/test_recursive.py
--- a/rpython/jit/backend/x86/test/test_recursive.py
+++ b/rpython/jit/backend/x86/test/test_recursive.py
@@ -25,6 +25,6 @@
                     ranges.append(tb)
                     prev_traceback = tb
             return ranges
-        assert get_ranges(codemaps[2]) == [[4], [4, 2], [4], [4, 2], [4]]
+        assert get_ranges(codemaps[2]) == [[4], [4, 2], [4]]
         assert get_ranges(codemaps[1]) == [[2]]
         assert get_ranges(codemaps[0]) == [[2], []]


More information about the pypy-commit mailing list