mirror of https://github.com/python/cpython
Fix issue #12948: multiprocessing test failures can hang the buildbots
This commit is contained in:
commit
1e1c8f4913
|
@ -2275,13 +2275,11 @@ class TestStdinBadfiledescriptor(unittest.TestCase):
|
|||
def test_queue_in_process(self):
|
||||
queue = multiprocessing.Queue()
|
||||
proc = multiprocessing.Process(target=_TestProcess, args=(queue,))
|
||||
proc.daemon = True
|
||||
proc.start()
|
||||
proc.join()
|
||||
|
||||
def test_pool_in_process(self):
|
||||
p = multiprocessing.Process(target=pool_in_process)
|
||||
p.daemon = True
|
||||
p.start()
|
||||
p.join()
|
||||
|
||||
|
|
Loading…
Reference in New Issue