From: Furkan Onder Date: Tue, 5 Aug 2025 08:32:21 +0000 (+0000) Subject: gh-137397: Skip test_os_open on NetBSD due to indefinite hang (#137398) X-Git-Tag: v3.15.0a1~779 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f416c867445dd94d11ee9df5f1a2d9d6eb8d883;p=thirdparty%2FPython%2Fcpython.git gh-137397: Skip test_os_open on NetBSD due to indefinite hang (#137398) --- 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)