[pypy-commit] pypy win64-stage1: unclear, reverting a change which did not help

ctismer noreply at buildbot.pypy.org
Thu Dec 1 21:50:52 CET 2011


Author: Christian Tismer <tismer at stackless.com>
Branch: win64-stage1
Changeset: r50043:6055c7b753ec
Date: 2011-12-01 21:49 +0100
http://bitbucket.org/pypy/pypy/changeset/6055c7b753ec/

Log:	unclear, reverting a change which did not help

diff --git a/pypy/rlib/test/test_libffi.py b/pypy/rlib/test/test_libffi.py
--- a/pypy/rlib/test/test_libffi.py
+++ b/pypy/rlib/test/test_libffi.py
@@ -439,7 +439,7 @@
         libfoo = CDLL(self.libfoo_name)
         make_point = (libfoo, 'make_point', [types.slong, types.slong], ffi_point)
         #
-        PTR = lltype.Ptr(rffi.CArray(rffi.SIGNED))
+        PTR = lltype.Ptr(rffi.CArray(rffi.LONG))
         p = self.call(make_point, [12, 34], PTR, is_struct=True,
                       jitif=["byval"])
         assert p[0] == 12


More information about the pypy-commit mailing list