[Python-checkins] r85597 - python/branches/py3k/Lib/test/test_signal.py

gregory.p.smith python-checkins at python.org
Sun Oct 17 04:57:19 CEST 2010


Author: gregory.p.smith
Date: Sun Oct 17 04:57:19 2010
New Revision: 85597

Log:
skip test_itimer_virtual on NetBSD to prevent the test suite from hanging.


Modified:
   python/branches/py3k/Lib/test/test_signal.py

Modified: python/branches/py3k/Lib/test/test_signal.py
==============================================================================
--- python/branches/py3k/Lib/test/test_signal.py	(original)
+++ python/branches/py3k/Lib/test/test_signal.py	Sun Oct 17 04:57:19 2010
@@ -438,8 +438,8 @@
         self.assertEqual(self.hndl_called, True)
 
     # Issue 3864, unknown if this affects earlier versions of freebsd also
-    @unittest.skipIf(sys.platform=='freebsd6',
-        '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.')
     def test_itimer_virtual(self):
         self.itimer = signal.ITIMER_VIRTUAL
         signal.signal(signal.SIGVTALRM, self.sig_vtalrm)


More information about the Python-checkins mailing list