https://github.com/python/cpython/commit/a73ba4d46e4106aed29dd73a7698abd01ff94b07
commit: a73ba4d46e4106aed29dd73a7698abd01ff94b07
branch: main
author: Donghee Na <[email protected]>
committer: corona10 <[email protected]>
date: 2026-01-15T09:52:29+09:00
summary:
gh-143632: Skip unittest for mmap.set_name at musl environment (gh-143839)
files:
M Lib/test/test_mmap.py
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)
_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]