summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_threading.py
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2012-03-24 19:36:09 (GMT)
committerCharles-François Natali <neologix@free.fr>2012-03-24 19:36:09 (GMT)
commit8e6fe648cc9ec6b2385c16231a0a44c44d5b032d (patch)
treef4f397ae6e7a88e25f7dccf5c6e08226cb18f47c /Lib/test/test_threading.py
parent2dee394af9a021c905c91a550d3201115b16dfee (diff)
downloadcpython-8e6fe648cc9ec6b2385c16231a0a44c44d5b032d.zip
cpython-8e6fe648cc9ec6b2385c16231a0a44c44d5b032d.tar.gz
cpython-8e6fe648cc9ec6b2385c16231a0a44c44d5b032d.tar.bz2
Issue #13902: Fix a random test_threading failure on FreeBSD 6 buildbots (due
to a known bug in pthread implementation on FreeBSD < 7).
Diffstat (limited to 'Lib/test/test_threading.py')
-rw-r--r--Lib/test/test_threading.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py
index 32637b5..dfc0ddf 100644
--- a/Lib/test/test_threading.py
+++ b/Lib/test/test_threading.py
@@ -624,6 +624,7 @@ class ThreadJoinOnShutdown(BaseTestCase):
output = "end of worker thread\nend of main thread\n"
self.assertScriptHasOutput(script, output)
+ @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug")
def test_6_daemon_threads(self):
# Check that a daemon thread cannot crash the interpreter on shutdown
# by manipulating internal structures that are being disposed of in