From 995fbff382120a2eba6c6c7c7a95cc5734ee239a Mon Sep 17 00:00:00 2001 From: Donghee Na Date: Thu, 15 Jan 2026 02:31:40 +0900 Subject: [PATCH] gh-143632: Skip unittest for mmap.set_name at musl environment --- Lib/test/test_mmap.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_mmap.py b/Lib/test/test_mmap.py index 48bf246cadd2f8..177fe45e8d9749 100644 --- a/Lib/test/test_mmap.py +++ b/Lib/test/test_mmap.py @@ -1183,6 +1183,7 @@ def test_flush_parameters(self): @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)