]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Avoid hanging the test on netbsd5.
authorGregory P. Smith <greg@mad-scientist.com>
Sun, 17 Oct 2010 03:09:12 +0000 (03:09 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Sun, 17 Oct 2010 03:09:12 +0000 (03:09 +0000)
Lib/test/test_threading.py

index 19ba7301430784327e2cbbdac3a62b2ed1882d79..62ad4af7ec53f2314b1c70f374c200f73eb0a15a 100644 (file)
@@ -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()