From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 5 Aug 2025 08:55:53 +0000 (+0200) Subject: [3.13] gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398)... X-Git-Tag: v3.13.6~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25c221f5e734b108e10ddb20e4d1d429ee03a2d2;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398) (#137407) gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398) (cherry picked from commit 7f416c867445dd94d11ee9df5f1a2d9d6eb8d883) Co-authored-by: Furkan Onder --- diff --git a/Lib/test/_test_eintr.py b/Lib/test/_test_eintr.py index 493932d6c6d4..b7e23660dd0a 100644 --- a/Lib/test/_test_eintr.py +++ b/Lib/test/_test_eintr.py @@ -369,6 +369,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)