summaryrefslogtreecommitdiff
path: root/Lib/test/test_threading.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2010-10-17 03:09:12 +0000
committerGregory P. Smith <greg@mad-scientist.com>2010-10-17 03:09:12 +0000
commit7160278cd98cf874e206280c75085cb17a094795 (patch)
tree36397c35a82efe57f65ea06131d4343ade93b401 /Lib/test/test_threading.py
parentc26bf8fb5cd2be6a16ad409067d33453b5ff23b1 (diff)
downloadcpython-7160278cd98cf874e206280c75085cb17a094795.tar.gz
Avoid hanging the test on netbsd5.
Diffstat (limited to 'Lib/test/test_threading.py')
-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 19ba730143..62ad4af7ec 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()