summaryrefslogtreecommitdiff
path: root/testing/cffi0/test_ownlib.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/cffi0/test_ownlib.py')
-rw-r--r--testing/cffi0/test_ownlib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/cffi0/test_ownlib.py b/testing/cffi0/test_ownlib.py
index ffad879..bbdab8c 100644
--- a/testing/cffi0/test_ownlib.py
+++ b/testing/cffi0/test_ownlib.py
@@ -2,7 +2,7 @@ import py, sys, os
import subprocess, weakref
from cffi import FFI
from cffi.backend_ctypes import CTypesBackend
-from testing.support import u
+from testing.support import u, is_musl
SOURCE = """\
@@ -388,7 +388,7 @@ class TestOwnLib(object):
def test_dlopen_handle(self):
if self.module is None:
py.test.skip("fix the auto-generation of the tiny test lib")
- if sys.platform == 'win32':
+ if sys.platform == 'win32' or is_musl:
py.test.skip("uses 'dl' explicitly")
if self.__class__.Backend is CTypesBackend:
py.test.skip("not for the ctypes backend")