summaryrefslogtreecommitdiff
path: root/testing/test_cdata.py
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2012-05-21 19:49:12 +0200
committerArmin Rigo <arigo@tunes.org>2012-05-21 19:49:12 +0200
commit9d7c1a80861d6830e4df816a2f646df1d2e76ad2 (patch)
treed96d54340ca436f4d960c04bbe93a1b551b211aa /testing/test_cdata.py
parentb380511cfbad007284e81ee20492dc0632422f4c (diff)
downloadcffi-9d7c1a80861d6830e4df816a2f646df1d2e76ad2.tar.gz
write_variable().
Diffstat (limited to 'testing/test_cdata.py')
-rw-r--r--testing/test_cdata.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/testing/test_cdata.py b/testing/test_cdata.py
index 432bac4..09ebf16 100644
--- a/testing/test_cdata.py
+++ b/testing/test_cdata.py
@@ -21,9 +21,3 @@ def test_typeof():
clong = ffi.typeof("signed long int")
assert isinstance(clong, FakePrimitiveType)
assert clong.cdecl == 'long'
-
-def test_global_struct_instance():
- py.test.skip("in-progress")
- ffi = FFI(backend=FakeBackend())
- ffi.cdef("struct foo { int a; } globaz;")
- ffi.C.globaz