Skip to content

Commit 7f416c8

Browse files
authored
gh-137397: Skip test_os_open on NetBSD due to indefinite hang (#137398)
1 parent 0af7556 commit 7f416c8

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)