[pypy-commit] cffi default: here too

arigo pypy.commits at gmail.com
Sat Jan 16 09:53:33 EST 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: 
Changeset: r2598:93b41e913bad
Date: 2016-01-16 15:53 +0100
http://bitbucket.org/cffi/cffi/changeset/93b41e913bad/

Log:	here too

diff --git a/testing/cffi1/test_verify1.py b/testing/cffi1/test_verify1.py
--- a/testing/cffi1/test_verify1.py
+++ b/testing/cffi1/test_verify1.py
@@ -71,8 +71,8 @@
     assert lib.sin(1.23) == math.sin(1.23)
 
 def _Wconversion(cdef, source, **kargs):
-    if sys.platform == 'win32':
-        py.test.skip("needs GCC or Clang")
+    if sys.platform in ('win32', 'darwin'):
+        py.test.skip("needs GCC")
     ffi = FFI()
     ffi.cdef(cdef)
     py.test.raises(VerificationError, ffi.verify, source, **kargs)


More information about the pypy-commit mailing list