[Python-checkins] r85598 - python/branches/py3k/Lib/test/test_threading.py

gregory.p.smith python-checkins at python.org
Sun Oct 17 05:09:12 CEST 2010


Author: gregory.p.smith
Date: Sun Oct 17 05:09:12 2010
New Revision: 85598

Log:
Avoid hanging the test on netbsd5.


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

Modified: python/branches/py3k/Lib/test/test_threading.py
==============================================================================
--- python/branches/py3k/Lib/test/test_threading.py	(original)
+++ python/branches/py3k/Lib/test/test_threading.py	Sun Oct 17 05:09:12 2010
@@ -485,7 +485,8 @@
 
         # Skip platforms with known problems forking from a worker thread.
         # See http://bugs.python.org/issue3863.
-        if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'os2emx'):
+        if sys.platform in ('freebsd4', 'freebsd5', 'freebsd6', 'netbsd5',
+                           'os2emx'):
             raise unittest.SkipTest('due to known OS bugs on ' + sys.platform)
         script = """if 1:
             main_thread = threading.current_thread()


More information about the Python-checkins mailing list