mirror of
https://github.com/python/cpython.git
synced 2026-05-03 09:01:07 +00:00
gh-143632: Skip unittest for mmap.set_name at musl environment (gh-143839)
This commit is contained in:
parent
b8e925b4f8
commit
a73ba4d46e
1 changed files with 1 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue