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 3118693 commit 8ad4646Copy full SHA for 8ad4646
Lib/test/test_os.py
@@ -4349,6 +4349,9 @@ 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: Skip on NetBSD due to system freeze "
4354
+ "with negative timer values")
4355
def test_timerfd_negative(self):
4356
one_sec_in_nsec = 10**9
4357
fd = self.timerfd_create(time.CLOCK_REALTIME)
0 commit comments