summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-07-17 17:03:46 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-07-17 17:03:46 (GMT)
commit6a9475f6dcf4a2cfe5c020ab4d5bf31de124c160 (patch)
tree189438a3a74af2bef1c46d7a9ed1bf59a8865c24 /Lib
parentad703dc345cf38e46dd8963066f10a2dde3ce01a (diff)
downloadcpython-6a9475f6dcf4a2cfe5c020ab4d5bf31de124c160.zip
cpython-6a9475f6dcf4a2cfe5c020ab4d5bf31de124c160.tar.gz
cpython-6a9475f6dcf4a2cfe5c020ab4d5bf31de124c160.tar.bz2
XXX disable hanging test
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_threading.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_threading.py b/Lib/test/test_threading.py
index 90869f2..1abc63f 100644
--- a/Lib/test/test_threading.py
+++ b/Lib/test/test_threading.py
@@ -375,7 +375,8 @@ class ThreadJoinOnShutdown(unittest.TestCase):
"""
self._run_and_join(script)
- def test_3_join_in_forked_from_thread(self):
+ # XXX This test hangs!
+ def Xtest_3_join_in_forked_from_thread(self):
# Like the test above, but fork() was called from a worker thread
# In the forked process, the main Thread object must be marked as stopped.
import os