diff options
author | Matti Picus <matti.picus@gmail.com> | 2024-04-17 21:05:04 +1000 |
---|---|---|
committer | Matti Picus <matti.picus@gmail.com> | 2024-04-17 21:05:04 +1000 |
commit | 5d9677183912d2b81a93bfe272c118222168844b (patch) | |
tree | d2f036bd6f46eb0061e0585c01cb2181c7444173 | |
parent | Merge pull request #4893 from pypy/branch/issue4876 (diff) | |
download | pypy-5d9677183912d2b81a93bfe272c118222168844b.tar.gz pypy-5d9677183912d2b81a93bfe272c118222168844b.tar.bz2 pypy-5d9677183912d2b81a93bfe272c118222168844b.zip |
skip variadic cffi test
-rw-r--r-- | extra_tests/cffi_tests/test_c.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/extra_tests/cffi_tests/test_c.py b/extra_tests/cffi_tests/test_c.py index a83bb84f22..ae36531840 100644 --- a/extra_tests/cffi_tests/test_c.py +++ b/extra_tests/cffi_tests/test_c.py @@ -2958,6 +2958,8 @@ if sys.version_info >= (3,): def test_FILE(): if sys.platform == "win32": pytest.skip("testing FILE not implemented") + if sys.platform == "darwin": + pytest.skip("testing variadic broken on macos (issue 4937)") # BFILE = new_struct_type("struct _IO_FILE") BFILEP = new_pointer_type(BFILE) |