mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-34040, multiprocessing: Fix test_forkserver_sigkill() (GH-8081)
Fix test_forkserver_sigkill() of test_multiprocessing_forkserver: give more time to the first child process to complete, double the sleep in the parent process. Reduce also the child process sleep from 1000 ms to 500 ms, to not change the total duration of the test.
This commit is contained in:
parent
12a08c4760
commit
07888e1cce
1 changed files with 6 additions and 2 deletions
|
@ -651,13 +651,17 @@ class _TestProcess(BaseTestCase):
|
|||
from multiprocessing.forkserver import _forkserver
|
||||
_forkserver.ensure_running()
|
||||
|
||||
# First process sleeps 500 ms
|
||||
delay = 0.5
|
||||
|
||||
evt = self.Event()
|
||||
proc = self.Process(target=self._sleep_and_set_event, args=(evt, 1.0))
|
||||
proc = self.Process(target=self._sleep_and_set_event, args=(evt, delay))
|
||||
proc.start()
|
||||
|
||||
pid = _forkserver._forkserver_pid
|
||||
os.kill(pid, signum)
|
||||
time.sleep(1.0) # give it time to die
|
||||
# give time to the fork server to die and time to proc to complete
|
||||
time.sleep(delay * 2.0)
|
||||
|
||||
evt2 = self.Event()
|
||||
proc2 = self.Process(target=self._sleep_and_set_event, args=(evt2,))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue