From: Donghee Na Date: Thu, 15 Jan 2026 00:52:29 +0000 (+0900) Subject: gh-143632: Skip unittest for mmap.set_name at musl environment (gh-143839) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a73ba4d46e4106aed29dd73a7698abd01ff94b07;p=thirdparty%2FPython%2Fcpython.git gh-143632: Skip unittest for mmap.set_name at musl environment (gh-143839) --- diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index 48bf246cadd2..177fe45e8d97 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -1183,6 +1183,7 @@ class MmapTests(unittest.TestCase): @unittest.skipUnless(sys.platform == 'linux', 'Linux only') @support.requires_linux_version(5, 17, 0) + @unittest.skipIf(support.linked_to_musl(), "musl libc issue, gh-143632") def test_set_name(self): # Test setting name on anonymous mmap m = mmap.mmap(-1, PAGESIZE)