summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2017-03-13 14:37:18 +0100
committerArmin Rigo <arigo@tunes.org>2017-03-13 14:37:18 +0100
commit01bd5815e6f3eb8fb65c96028eb10f0972d92be4 (patch)
treec119c789705bf12b7298b1c3add841bd3871c612
parent955a0c9859db0997a4a2a18b04653c081b5e9f02 (diff)
downloadcffi-01bd5815e6f3eb8fb65c96028eb10f0972d92be4.tar.gz
skip on windows
-rw-r--r--testing/cffi1/test_recompiler.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/testing/cffi1/test_recompiler.py b/testing/cffi1/test_recompiler.py
index 86ac9ea..7afab07 100644
--- a/testing/cffi1/test_recompiler.py
+++ b/testing/cffi1/test_recompiler.py
@@ -2106,6 +2106,8 @@ def test_call_with_bitfield():
"set_source() and not taking a final '...' argument)")
def test_call_with_zero_length_field():
+ if sys.platform == 'win32':
+ py.test.skip("zero-length field not supported by MSVC")
ffi = FFI()
ffi.cdef("""
struct foo { int a; int x[0]; };