mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
[3.13] gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398) (#137407)
gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398)
(cherry picked from commit 7f416c8674)
Co-authored-by: Furkan Onder <furkanonder@protonmail.com>
This commit is contained in:
parent
3c37483731
commit
25c221f5e7
1 changed files with 2 additions and 0 deletions
|
|
@ -369,6 +369,8 @@ def os_open(self, path):
|
|||
|
||||
@unittest.skipIf(sys.platform == "darwin",
|
||||
"hangs under macOS; see bpo-25234, bpo-35363")
|
||||
@unittest.skipIf(sys.platform.startswith('netbsd'),
|
||||
"hangs on NetBSD; see gh-137397")
|
||||
def test_os_open(self):
|
||||
self._test_open("fd = os.open(path, os.O_RDONLY)\nos.close(fd)",
|
||||
self.os_open)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue