bpo-37531: Fix regrtest _timedout() function on timeout (GH-15419)

Fix code handling TimeoutExpired exception in _timedout().
This commit is contained in:
Victor Stinner 2019-08-23 11:27:24 +01:00 committed by GitHub
parent c48682509d
commit 767434c39c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -184,14 +184,14 @@ def mp_result_error(self, test_name, error_type, stdout='', stderr='',
def _timedout(self, test_name):
self._kill()
stdout = sterr = ''
stdout = stderr = ''
popen = self._popen
try:
stdout, stderr = popen.communicate(timeout=JOIN_TIMEOUT)
except (subprocess.TimeoutExpired, OSError) as exc:
print("WARNING: Failed to read worker process %s output "
"(timeout=%.1f sec): %r"
% (popen.pid, exc, timeout),
% (popen.pid, JOIN_TIMEOUT, exc),
file=sys.stderr, flush=True)
self._close_wait()