https://github.com/python/cpython/commit/7f416c867445dd94d11ee9df5f1a2d9d6eb8d883
commit: 7f416c867445dd94d11ee9df5f1a2d9d6eb8d883
branch: main
author: Furkan Onder <[email protected]>
committer: vstinner <[email protected]>
date: 2025-08-05T10:32:21+02:00
summary:

gh-137397: Skip test_os_open on NetBSD due to indefinite hang (#137398)

files:
M Lib/test/_test_eintr.py

diff --git a/Lib/test/_test_eintr.py b/Lib/test/_test_eintr.py
index 0ce42276bfe3d6..4a050792df73c4 100644
--- a/Lib/test/_test_eintr.py
+++ b/Lib/test/_test_eintr.py
@@ -380,6 +380,8 @@ def os_open(self, path):
 
     @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)

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: [email protected]

Reply via email to