From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Sun, 7 Sep 2025 07:46:20 +0000 (+0200) Subject: [3.14] gh-90548: Skip ctypes test_null_dlsym when linked to musl (GH-138592) (#138601) X-Git-Tag: v3.14.0rc3~82 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=95ec2c1ead28339212ff3a6735c8a8ff4cc3ff82;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-90548: Skip ctypes test_null_dlsym when linked to musl (GH-138592) (#138601) Co-authored-by: Zachary Ware --- diff --git a/Lib/test/test_ctypes/test_dlerror.py b/Lib/test/test_ctypes/test_dlerror.py index 8af34e62b94f..5658234f9ec6 100644 --- a/Lib/test/test_ctypes/test_dlerror.py +++ b/Lib/test/test_ctypes/test_dlerror.py @@ -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