From: Gregory P. Smith Date: Sun, 17 Oct 2010 03:09:12 +0000 (+0000) Subject: Avoid hanging the test on netbsd5. X-Git-Tag: v3.2a4~505 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=feedda2bab051f72a98e03c3ab90eb4c1d70abbd;p=thirdparty%2FPython%2Fcpython.git Avoid hanging the test on netbsd5. --- diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 19ba73014307..62ad4af7ec53 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -485,7 +485,8 @@ class ThreadJoinOnShutdown(BaseTestCase): # 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()