Author: Richard Plangger <planri...@gmail.com>
Branch: release-pypy2.7-5.x
Changeset: r88257:bf1730c272d9
Date: 2016-11-09 12:05 +0100
http://bitbucket.org/pypy/pypy/changeset/bf1730c272d9/

Log:    test wrote just after the bounds of the array (test was not broke,
        just did to much work)

diff --git a/rpython/jit/metainterp/test/test_vector.py 
b/rpython/jit/metainterp/test/test_vector.py
--- a/rpython/jit/metainterp/test/test_vector.py
+++ b/rpython/jit/metainterp/test/test_vector.py
@@ -867,7 +867,7 @@
         def f(bytecount, va, vb, vc):
             i = 0
             j = 0
-            while i < bytecount:
+            while j < bytecount:
                 myjitdriver.jit_merge_point()
                 a = raw_storage_getitem(rffi.DOUBLE,va,j)
                 b = raw_storage_getitem(rffi.INT,vb,i)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to