Thanks to visit codestin.com Credit goes to github.com
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 68e0135 commit 0f61dd0Copy full SHA for 0f61dd0
1 file changed
Lib/test/test_signal.py
@@ -438,8 +438,8 @@ def test_itimer_real(self):
438
self.assertEqual(self.hndl_called, True)
439
440
# Issue 3864, unknown if this affects earlier versions of freebsd also
441
- @unittest.skipIf(sys.platform=='freebsd6',
442
- 'itimer not reliable (does not mix well with threading) on freebsd6')
+ @unittest.skipIf(sys.platform in ('freebsd6', 'netbsd5'),
+ 'itimer not reliable (does not mix well with threading) on some BSDs.')
443
def test_itimer_virtual(self):
444
self.itimer = signal.ITIMER_VIRTUAL
445
signal.signal(signal.SIGVTALRM, self.sig_vtalrm)
0 commit comments