diff options
author | Charles-François Natali <neologix@free.fr> | 2012-03-24 20:36:09 +0100 |
---|---|---|
committer | Charles-François Natali <neologix@free.fr> | 2012-03-24 20:36:09 +0100 |
commit | 0aabab5c09982d0ebe6a375a842d64367f1cce7e (patch) | |
tree | 03ad262fae99b6865f835bb40c56e8f0384ddb10 /Lib/test/test_threading.py | |
parent | e9733c4ccee66b70e72f144dfb46080b88fb42fd (diff) | |
download | cpython-0aabab5c09982d0ebe6a375a842d64367f1cce7e.tar.gz |
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.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 32637b5b29..dfc0ddf49c 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 |