From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 8 Sep 2025 14:58:44 +0000 (+0200) Subject: [3.14] gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398)... X-Git-Tag: v3.14.0rc3~73 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=226915dd2cd0be4c76d607317b34abe550f69b6d;p=thirdparty%2FPython%2Fcpython.git [3.14] gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398) (#137406) Co-authored-by: Furkan Onder --- diff --git a/Lib/test/_test_eintr.py b/Lib/test/_test_eintr.py index 0ce42276bfe3..4a050792df73 100644 --- a/Lib/test/_test_eintr.py +++ b/Lib/test/_test_eintr.py @@ -380,6 +380,8 @@ class SocketEINTRTest(EINTRBaseTest): @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)