mirror of
https://github.com/python/cpython.git
synced 2026-04-27 22:31:21 +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.
(cherry picked from commit 07888e1cce)
Co-authored-by: Victor Stinner <vstinner@redhat.com>
This commit is contained in:
parent
d7a0ad7dd7
commit
ae23d8de8d
1 changed files with 6 additions and 2 deletions
|
|
@ -494,13 +494,17 @@ def check_forkserver_death(self, signum):
|
|||
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