We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3e275f commit 5867c79Copy full SHA for 5867c79
Lib/test/test_os.py
@@ -4349,6 +4349,8 @@ def test_timerfd_non_blocking(self):
4349
# confirm if timerfd is readable and read() returns 1 as bytes.
4350
self.assertEqual(self.read_count_signaled(fd), 1)
4351
4352
+ @unittest.skipIf(sys.platform.startswith('netbsd'),
4353
+ "gh-131263: Skipp on NetBSD due to system freeze with negative timer values")
4354
def test_timerfd_negative(self):
4355
one_sec_in_nsec = 10**9
4356
fd = self.timerfd_create(time.CLOCK_REALTIME)
0 commit comments