[pypy-commit] pypy default: Make ll2ctypes happier when running backend/x86/test/test_list.py.

arigo noreply at buildbot.pypy.org
Wed Mar 14 22:20:23 CET 2012


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r53603:11ecfd8c89e6
Date: 2012-03-14 14:20 -0700
http://bitbucket.org/pypy/pypy/changeset/11ecfd8c89e6/

Log:	Make ll2ctypes happier when running backend/x86/test/test_list.py.

diff --git a/pypy/jit/metainterp/test/test_list.py b/pypy/jit/metainterp/test/test_list.py
--- a/pypy/jit/metainterp/test/test_list.py
+++ b/pypy/jit/metainterp/test/test_list.py
@@ -232,6 +232,7 @@
     def test_newlist_hint(self):
         def f(i):
             l = newlist_hint(i)
+            l[0] = 55
             return len(l)
 
         r = self.interp_operations(f, [3])


More information about the pypy-commit mailing list