https://github.com/python/cpython/commit/12227223d13bcb06ea9edd8794f8d058ceb0ea4e commit: 12227223d13bcb06ea9edd8794f8d058ceb0ea4e branch: 3.13 author: Miss Islington (bot) <31488909+miss-isling...@users.noreply.github.com> committer: vstinner <vstin...@python.org> date: 2025-03-19T12:52:11+01:00 summary:
[3.13] gh-131263: Skip test_timerfd_negative on NetBSD to prevent system freeze (GH-131431) (#131451) gh-131263: Skip test_timerfd_negative on NetBSD to prevent system freeze (GH-131431) (cherry picked from commit 8ad4646c675211dc1df0254a3160f50a18e4c6c3) Co-authored-by: Furkan Onder <furkanon...@protonmail.com> files: M Lib/test/test_os.py diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py index 1396cbd317aacd..e78a7f7f67ad2a 100644 --- a/Lib/test/test_os.py +++ b/Lib/test/test_os.py @@ -4188,6 +4188,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