Skip to content

Commit a73ba4d

Browse files
authored
gh-143632: Skip unittest for mmap.set_name at musl environment (gh-143839)
1 parent b8e925b commit a73ba4d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/test_mmap.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1183,6 +1183,7 @@ def test_flush_parameters(self):
11831183

11841184
@unittest.skipUnless(sys.platform == 'linux', 'Linux only')
11851185
@support.requires_linux_version(5, 17, 0)
1186+
@unittest.skipIf(support.linked_to_musl(), "musl libc issue, gh-143632")
11861187
def test_set_name(self):
11871188
# Test setting name on anonymous mmap
11881189
m = mmap.mmap(-1, PAGESIZE)

0 commit comments

Comments
 (0)