Author: Armin Rigo <ar...@tunes.org>
Branch: null_byte_after_str
Changeset: r85942:e407fb5b9a61
Date: 2016-07-30 23:19 +0200
http://bitbucket.org/pypy/pypy/changeset/e407fb5b9a61/

Log:    Test fix (it would always return 0, and now the annotator figures
        that out)

diff --git a/rpython/jit/metainterp/test/test_virtualizable.py 
b/rpython/jit/metainterp/test/test_virtualizable.py
--- a/rpython/jit/metainterp/test/test_virtualizable.py
+++ b/rpython/jit/metainterp/test/test_virtualizable.py
@@ -1381,7 +1381,7 @@
             return result
 
         def indirection(arg):
-            return interp(arg)
+            return interp(arg) + 1
 
         def run_interp(n):
             f = hint(Frame(n), access_directly=True)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to