Discussion:
[Python-3000-checkins] r65068 - python/branches/py3k/Lib/test/test_threading.py
benjamin.peterson
2008-07-17 17:03:47 UTC
Permalink
Author: benjamin.peterson
Date: Thu Jul 17 19:03:46 2008
New Revision: 65068

Log:
XXX disable hanging test

Modified:
python/branches/py3k/Lib/test/test_threading.py

Modified: python/branches/py3k/Lib/test/test_threading.py
==============================================================================
--- python/branches/py3k/Lib/test/test_threading.py (original)
+++ python/branches/py3k/Lib/test/test_threading.py Thu Jul 17 19:03:46 2008
@@ -375,7 +375,8 @@
"""
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

Loading...