Skip to content

Commit 8f8607a

Browse files
corona10thunder-coding
authored andcommitted
pythongh-143632: Skip unittest for mmap.set_name at musl environment (pythongh-143839)
1 parent 21f25a9 commit 8f8607a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

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)