https://github.com/python/cpython/commit/25c221f5e734b108e10ddb20e4d1d429ee03a2d2
commit: 25c221f5e734b108e10ddb20e4d1d429ee03a2d2
branch: 3.13
author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com>
committer: vstinner <vstin...@python.org>
date: 2025-08-05T08:55:53Z
summary:

[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 <furkanon...@protonmail.com>

files:
M Lib/test/_test_eintr.py

diff --git a/Lib/test/_test_eintr.py b/Lib/test/_test_eintr.py
index 493932d6c6d441..b7e23660dd0a85 100644
--- a/Lib/test/_test_eintr.py
+++ b/Lib/test/_test_eintr.py
@@ -369,6 +369,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 -- python-checkins@python.org
To unsubscribe send an email to python-checkins-le...@python.org
https://mail.python.org/mailman3//lists/python-checkins.python.org
Member address: arch...@mail-archive.com

Reply via email to