[pypy-commit] pypy release-2.2.x: Import cffi/8c9468c7c428

arigo noreply at buildbot.pypy.org
Tue Nov 12 14:35:49 CET 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: release-2.2.x
Changeset: r67981:f3423a62cd09
Date: 2013-11-12 14:33 +0100
http://bitbucket.org/pypy/pypy/changeset/f3423a62cd09/

Log:	Import cffi/8c9468c7c428

diff --git a/pypy/module/test_lib_pypy/cffi_tests/test_verify.py b/pypy/module/test_lib_pypy/cffi_tests/test_verify.py
--- a/pypy/module/test_lib_pypy/cffi_tests/test_verify.py
+++ b/pypy/module/test_lib_pypy/cffi_tests/test_verify.py
@@ -1602,6 +1602,8 @@
                         (maxulong, -1, ''),
                         (-1, 0xffffffff, 'U'),
                         (-1, maxulong, 'UL')]:
+        if c2c and sys.platform == 'win32':
+            continue     # enums may always be signed with MSVC
         ffi = FFI()
         ffi.cdef("enum foo_e { AA=%s };" % c1)
         e = py.test.raises(VerificationError, ffi.verify,


More information about the pypy-commit mailing list