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):
389
389
def test_dlopen_handle (self ):
390
390
if self .module is None :
391
391
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' ) :
393
393
pytest .skip ("uses 'dl' explicitly" )
394
394
if self .__class__ .Backend is CTypesBackend :
395
395
pytest .skip ("not for the ctypes backend" )
Original file line number Diff line number Diff line change @@ -269,7 +269,7 @@ def test_selfref():
269
269
def test_dlopen_handle ():
270
270
import _cffi_backend
271
271
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' ) :
273
273
pytest .skip ("uses 'dl' explicitly" )
274
274
ffi1 = FFI ()
275
275
ffi1 .cdef ("""void *dlopen(const char *filename, int flags);
You can’t perform that action at this time.
0 commit comments