diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-03-25 22:41:06 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-03-25 22:41:06 -0400 |
commit | 533281dd4f979cf65d250e56a09ea94c364084dd (patch) | |
tree | ec7161f74eb69909630a0eba4d078e2b969aa3bd /Lib/test/test_threading.py | |
parent | a8755c586e6484093d59d6bd5adfffe4c0a5c2aa (diff) | |
parent | d34fc8b275ee1d6fe12e0ab330262a00ba5aad49 (diff) | |
download | cpython-git-533281dd4f979cf65d250e56a09ea94c364084dd.tar.gz |
merge heads
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 |