]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-90548: Skip ctypes test_null_dlsym when linked to musl (GH-138592) (#138601)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 7 Sep 2025 07:46:20 +0000 (09:46 +0200)
committerGitHub <noreply@github.com>
Sun, 7 Sep 2025 07:46:20 +0000 (10:46 +0300)
Co-authored-by: Zachary Ware <zach@python.org>
Lib/test/test_ctypes/test_dlerror.py

index 8af34e62b94faa3b234b588934ef8928e90bcf8e..5658234f9ec66bf21f2f943da9772e1edb08e2a2 100644 (file)
@@ -32,6 +32,7 @@ void *foo(void)
 
 @unittest.skipUnless(sys.platform.startswith('linux'),
                      'test requires GNU IFUNC support')
+@unittest.skipIf(test.support.linked_to_musl(), "Requires glibc")
 class TestNullDlsym(unittest.TestCase):
     """GH-126554: Ensure that we catch NULL dlsym return values