[3.14] gh-90548: Skip ctypes test_null_dlsym when linked to musl (GH-138592) (#138601)

Co-authored-by: Zachary Ware <zach@python.org>
This commit is contained in:
Miss Islington (bot) 2025-09-07 09:46:20 +02:00 committed by GitHub
parent 194fe15c5f
commit 95ec2c1ead
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -32,6 +32,7 @@
@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