diff options
author | Charles-François Natali <neologix@free.fr> | 2012-03-24 19:37:01 (GMT) |
---|---|---|
committer | Charles-François Natali <neologix@free.fr> | 2012-03-24 19:37:01 (GMT) |
commit | 9384c7ddab5fabdd235f1d45fd787197a24feed9 (patch) | |
tree | c5f9caf46be03dfd8d1bb0728137ead03f38b635 /Lib/test/test_threading.py | |
parent | 60ee04969e13b414eec5038dd32f2f9cf373049c (diff) | |
parent | 8e6fe648cc9ec6b2385c16231a0a44c44d5b032d (diff) | |
download | cpython-9384c7ddab5fabdd235f1d45fd787197a24feed9.zip cpython-9384c7ddab5fabdd235f1d45fd787197a24feed9.tar.gz cpython-9384c7ddab5fabdd235f1d45fd787197a24feed9.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.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py index 141d961..7ce5af4 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -632,6 +632,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 |