asyncio: Fix warning in test_close_kill_running()
Read process exit status to avoid the "Caught subprocess termination from unknown pid" message.
This commit is contained in:
parent
f91d845797
commit
e7a2f64435
|
@ -367,6 +367,7 @@ class SubprocessMixin:
|
||||||
proc.kill = kill
|
proc.kill = kill
|
||||||
returncode = transport.get_returncode()
|
returncode = transport.get_returncode()
|
||||||
transport.close()
|
transport.close()
|
||||||
|
yield from transport._wait()
|
||||||
return (returncode, kill_called)
|
return (returncode, kill_called)
|
||||||
|
|
||||||
# Ignore "Close running child process: kill ..." log
|
# Ignore "Close running child process: kill ..." log
|
||||||
|
|
Loading…
Reference in New Issue