File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -389,7 +389,7 @@ def test_modify_struct_value(self):
389389 def test_dlopen_handle (self ):
390390 if self .module is None :
391391 pytest .skip ("fix the auto-generation of the tiny test lib" )
392- if sys .platform == 'win32' or is_musl :
392+ if sys .platform == 'win32' or is_musl or sys . platform . startswith ( 'freebsd' ) :
393393 pytest .skip ("uses 'dl' explicitly" )
394394 if self .__class__ .Backend is CTypesBackend :
395395 pytest .skip ("not for the ctypes backend" )
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ def test_selfref():
269269def test_dlopen_handle ():
270270 import _cffi_backend
271271 from re_python_pysrc import ffi
272- if sys .platform == 'win32' or is_musl :
272+ if sys .platform == 'win32' or is_musl or sys . platform . startswith ( 'freebsd' ) :
273273 pytest .skip ("uses 'dl' explicitly" )
274274 ffi1 = FFI ()
275275 ffi1 .cdef ("""void *dlopen(const char *filename, int flags);
You can’t perform that action at this time.
0 commit comments