Skip to content

Commit 25c221f

Browse files
[3.13] pythongh-137397: Skip test_os_open on NetBSD due to indefinite hang (pythonGH-137398) (python#137407)
pythongh-137397: Skip test_os_open on NetBSD due to indefinite hang (pythonGH-137398) (cherry picked from commit 7f416c8) Co-authored-by: Furkan Onder <[email protected]>
1 parent 3c37483 commit 25c221f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Lib/test/_test_eintr.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -369,6 +369,8 @@ def os_open(self, path):
369369

370370
@unittest.skipIf(sys.platform == "darwin",
371371
"hangs under macOS; see bpo-25234, bpo-35363")
372+
@unittest.skipIf(sys.platform.startswith('netbsd'),
373+
"hangs on NetBSD; see gh-137397")
372374
def test_os_open(self):
373375
self._test_open("fd = os.open(path, os.O_RDONLY)\nos.close(fd)",
374376
self.os_open)

0 commit comments

Comments
 (0)