summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-10-17 03:09:12 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2010-10-17 03:09:12 (GMT)
commitfeedda2bab051f72a98e03c3ab90eb4c1d70abbd (patch)
tree502e84aefc199be8a27e759e28b8d33d72bddb49 /Lib
parent0f61dd0787e4a0217c26e63780a6a150e90bb87b (diff)
downloadcpython-feedda2bab051f72a98e03c3ab90eb4c1d70abbd.zip
cpython-feedda2bab051f72a98e03c3ab90eb4c1d70abbd.tar.gz
cpython-feedda2bab051f72a98e03c3ab90eb4c1d70abbd.tar.bz2
Avoid hanging the test on netbsd5.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_threading.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py
index 19ba730..62ad4af 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()