]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-137397: Skip test_os_open on NetBSD due to indefinite hang (GH-137398)...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 8 Sep 2025 14:58:44 +0000 (16:58 +0200)
committerGitHub <noreply@github.com>
Mon, 8 Sep 2025 14:58:44 +0000 (17:58 +0300)
Co-authored-by: Furkan Onder <furkanonder@protonmail.com>
Lib/test/_test_eintr.py

index 0ce42276bfe3d6233a3293b329a2bba0da54f0a0..4a050792df73c4f8749cfc559762e332e7bc5bda 100644 (file)
@@ -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)