Skip to content

Commit aed4fb2

Browse files
miss-islingtonfurkanonder
authored andcommitted
[3.14] pythongh-137397: Skip test_os_open on NetBSD due to indefinite hang (pythonGH-137398) (python#137406)
Co-authored-by: Furkan Onder <[email protected]>
1 parent 5345d1f commit aed4fb2

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
@@ -380,6 +380,8 @@ def os_open(self, path):
380380

381381
@unittest.skipIf(sys.platform == "darwin",
382382
"hangs under macOS; see bpo-25234, bpo-35363")
383+
@unittest.skipIf(sys.platform.startswith('netbsd'),
384+
"hangs on NetBSD; see gh-137397")
383385
def test_os_open(self):
384386
self._test_open("fd = os.open(path, os.O_RDONLY)\nos.close(fd)",
385387
self.os_open)

0 commit comments

Comments
 (0)