diff options
-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 77c4ca4..141d961 100644 --- a/Lib/test/test_threading.py +++ b/Lib/test/test_threading.py @@ -675,6 +675,7 @@ class ThreadJoinOnShutdown(BaseTestCase): self.assertFalse(err) @unittest.skipUnless(hasattr(os, 'fork'), "needs os.fork()") + @unittest.skipIf(sys.platform in platforms_to_skip, "due to known OS bug") def test_reinit_tls_after_fork(self): # Issue #13817: fork() would deadlock in a multithreaded program with # the ad-hoc TLS implementation. |