mirror of
https://github.com/python/cpython.git
synced 2025-09-06 17:02:26 +00:00
Issue #17018: Make Process.join() retry if os.waitpid() fails with EINTR.
This commit is contained in:
parent
8fd366978d
commit
7aaa1ef858
3 changed files with 46 additions and 6 deletions
|
@ -2167,6 +2167,38 @@ class _TestLogging(BaseTestCase):
|
|||
# logger.warn('foo')
|
||||
# assert self.__handled
|
||||
|
||||
#
|
||||
# Check that Process.join() retries if os.waitpid() fails with EINTR
|
||||
#
|
||||
|
||||
class _TestPollEintr(BaseTestCase):
|
||||
|
||||
ALLOWED_TYPES = ('processes',)
|
||||
|
||||
@classmethod
|
||||
def _killer(cls, pid):
|
||||
time.sleep(0.5)
|
||||
os.kill(pid, signal.SIGUSR1)
|
||||
|
||||
@unittest.skipUnless(hasattr(signal, 'SIGUSR1'), 'requires SIGUSR1')
|
||||
def test_poll_eintr(self):
|
||||
got_signal = [False]
|
||||
def record(*args):
|
||||
got_signal[0] = True
|
||||
pid = os.getpid()
|
||||
oldhandler = signal.signal(signal.SIGUSR1, record)
|
||||
try:
|
||||
killer = self.Process(target=self._killer, args=(pid,))
|
||||
killer.start()
|
||||
p = self.Process(target=time.sleep, args=(1,))
|
||||
p.start()
|
||||
p.join()
|
||||
self.assertTrue(got_signal[0])
|
||||
self.assertEqual(p.exitcode, 0)
|
||||
killer.join()
|
||||
finally:
|
||||
signal.signal(signal.SIGUSR1, oldhandler)
|
||||
|
||||
#
|
||||
# Test to verify handle verification, see issue 3321
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue