https://github.com/python/cpython/commit/8ad4646c675211dc1df0254a3160f50a18e4c6c3
commit: 8ad4646c675211dc1df0254a3160f50a18e4c6c3
branch: main
author: Furkan Onder <furkanon...@protonmail.com>
committer: vstinner <vstin...@python.org>
date: 2025-03-19T11:24:09Z
summary:

gh-131263: Skip test_timerfd_negative on NetBSD to prevent system freeze 
(#131431)

files:
M Lib/test/test_os.py

diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index 6e40cb4f58bfee..0353c2b4866c45 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -4349,6 +4349,9 @@ def test_timerfd_non_blocking(self):
         # confirm if timerfd is readable and read() returns 1 as bytes.
         self.assertEqual(self.read_count_signaled(fd), 1)
 
+    @unittest.skipIf(sys.platform.startswith('netbsd'),
+                     "gh-131263: Skip on NetBSD due to system freeze "
+                     "with negative timer values")
     def test_timerfd_negative(self):
         one_sec_in_nsec = 10**9
         fd = self.timerfd_create(time.CLOCK_REALTIME)

_______________________________________________
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