[pypy-commit] pypy default: fix this test for 32-bit machines

alex_gaynor noreply at buildbot.pypy.org
Sat Oct 29 08:14:41 CEST 2011


Author: Alex Gaynor <alex.gaynor at gmail.com>
Branch: 
Changeset: r48597:753627dbee28
Date: 2011-10-29 02:14 -0400
http://bitbucket.org/pypy/pypy/changeset/753627dbee28/

Log:	fix this test for 32-bit machines

diff --git a/pypy/module/pypyjit/test_pypy_c/test_containers.py b/pypy/module/pypyjit/test_pypy_c/test_containers.py
--- a/pypy/module/pypyjit/test_pypy_c/test_containers.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_containers.py
@@ -93,7 +93,7 @@
             p15 = new_array(8, descr=<dictentryArrayDescr>)
             setfield_gc(p13, p15, descr=<GcPtrFieldDescr dicttable.entries .*>)
             i17 = call(ConstClass(ll_dict_lookup_trampoline), p13, p10, i12, descr=<SignedCallDescr>)
-            setfield_gc(p13, 16, descr=<SignedFieldDescr dicttable.resize_counter 16>)
+            setfield_gc(p13, 16, descr=<SignedFieldDescr dicttable.resize_counter .*>)
             guard_no_exception(descr=...)
             p20 = new_with_vtable(ConstClass(W_IntObject))
             call(ConstClass(_ll_dict_setitem_lookup_done_trampoline), p13, p10, p20, i12, i17, descr=<VoidCallDescr>)


More information about the pypy-commit mailing list