[pypy-commit] pypy virtual-raw-mallocs: fix

antocuni noreply at buildbot.pypy.org
Thu Jan 3 20:48:30 CET 2013


Author: Antonio Cuni <anto.cuni at gmail.com>
Branch: virtual-raw-mallocs
Changeset: r59689:b5f22503190c
Date: 2013-01-03 18:38 +0100
http://bitbucket.org/pypy/pypy/changeset/b5f22503190c/

Log:	fix

diff --git a/pypy/jit/codewriter/test/test_jtransform.py b/pypy/jit/codewriter/test/test_jtransform.py
--- a/pypy/jit/codewriter/test/test_jtransform.py
+++ b/pypy/jit/codewriter/test/test_jtransform.py
@@ -605,7 +605,7 @@
     assert op1.args == []
 
 def test_raw_free():
-    S = rffi.CArray(lltype.Signed)
+    S = rffi.CArray(lltype.Char)
     flags = Constant({'flavor': 'raw', 'track_allocation': True},
                      lltype.Void)
     op = SpaceOperation('free', [varoftype(lltype.Ptr(S)), flags],


More information about the pypy-commit mailing list