diff options
author | Armin Rigo <arigo@tunes.org> | 2012-07-18 23:21:53 +0200 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2012-07-18 23:21:53 +0200 |
commit | cc5c00bb02ac108bbeb0e25f8b4e1a85c9431b1e (patch) | |
tree | 35bf5217fb839cc12e3ff6c7a1ea1d4eaf8b3842 /testing/test_function.py | |
parent | b6e0cf1f1d8c3df26c8fc37d1c474f70c3cc817c (diff) | |
download | cffi-cc5c00bb02ac108bbeb0e25f8b4e1a85c9431b1e.tar.gz |
This test works (tested elsewhere).
Diffstat (limited to 'testing/test_function.py')
-rw-r--r-- | testing/test_function.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/testing/test_function.py b/testing/test_function.py index e3a5168..38368a8 100644 --- a/testing/test_function.py +++ b/testing/test_function.py @@ -268,6 +268,3 @@ class TestFunction(object): ina = ffi.new("struct in_addr *", [0x04040404]) a = ffi.C.inet_ntoa(ina[0]) assert str(a) == '4.4.4.4' - - def test_function_with_struct_return(self): - py.test.skip("this is a GNU C extension") |