]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-137397: Skip test_os_open on NetBSD due to indefinite hang (#137398)
authorFurkan Onder <furkanonder@protonmail.com>
Tue, 5 Aug 2025 08:32:21 +0000 (08:32 +0000)
committerGitHub <noreply@github.com>
Tue, 5 Aug 2025 08:32:21 +0000 (10:32 +0200)
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)