]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.13] gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398)...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 5 Aug 2025 08:55:53 +0000 (10:55 +0200)
committerGitHub <noreply@github.com>
Tue, 5 Aug 2025 08:55:53 +0000 (08:55 +0000)
gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398)
(cherry picked from commit 7f416c867445dd94d11ee9df5f1a2d9d6eb8d883)

Co-authored-by: Furkan Onder <furkanonder@protonmail.com>
Lib/test/_test_eintr.py

index 493932d6c6d441c23452c1230f7800584e6aff19..b7e23660dd0a854847c78ba15e3fc9660b76279f 100644 (file)
@@ -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)