summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2014-03-07 07:45:46 +0100
committerArmin Rigo <arigo@tunes.org>2014-03-07 07:45:46 +0100
commitec237ee867465998f9e0ce58b859fb2096d611b2 (patch)
tree6f571e7d16b1be017e81e6df6568317011819a15
parent38ed844b855d14b9a341e06687520fcce9ed0e52 (diff)
downloadcffi-ec237ee867465998f9e0ce58b859fb2096d611b2.tar.gz
Skip a test on Windows
-rw-r--r--c/test_c.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/c/test_c.py b/c/test_c.py
index 6437aa4..1864391 100644
--- a/c/test_c.py
+++ b/c/test_c.py
@@ -3186,6 +3186,8 @@ def test_packed():
assert alignof(BStruct) == 1
def test_packed_with_bitfields():
+ if sys.platform == "win32":
+ py.test.skip("testing gcc behavior")
BLong = new_primitive_type("long")
BChar = new_primitive_type("char")
BStruct = new_struct_type("struct foo")