Skip to content

Commit 226915d

Browse files
[3.14] gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398) (#137406)
Co-authored-by: Furkan Onder <[email protected]>
1 parent 1cb1c2c commit 226915d

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)