Author: Armin Rigo <[email protected]>
Branch:
Changeset: r57634:3ac9b8b3282a
Date: 2012-09-28 12:15 +0200
http://bitbucket.org/pypy/pypy/changeset/3ac9b8b3282a/
Log: Update to cffi/614f97f0de2a.
diff --git a/pypy/module/_cffi_backend/test/_backend_test_c.py
b/pypy/module/_cffi_backend/test/_backend_test_c.py
--- a/pypy/module/_cffi_backend/test/_backend_test_c.py
+++ b/pypy/module/_cffi_backend/test/_backend_test_c.py
@@ -981,7 +981,7 @@
assert strlenaddr == cast(BVoidP, strlen)
def test_read_variable():
- if sys.platform == 'win32':
+ if sys.platform == 'win32' or sys.platform == 'darwin':
py.test.skip("untested")
BVoidP = new_pointer_type(new_void_type())
ll = find_and_load_library('c')
@@ -989,7 +989,7 @@
assert stderr == cast(BVoidP, _testfunc(8))
def test_read_variable_as_unknown_length_array():
- if sys.platform == 'win32':
+ if sys.platform == 'win32' or sys.platform == 'darwin':
py.test.skip("untested")
BCharP = new_pointer_type(new_primitive_type("char"))
BArray = new_array_type(BCharP, None)
@@ -999,7 +999,7 @@
# ^^ and not 'char[]', which is basically not allowed and would crash
def test_write_variable():
- if sys.platform == 'win32':
+ if sys.platform == 'win32' or sys.platform == 'darwin':
py.test.skip("untested")
BVoidP = new_pointer_type(new_void_type())
ll = find_and_load_library('c')
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit