Add a log when SIGKILL is sent to a test parallel worker

This commit is contained in:
Yusuke Endoh 2024-08-07 02:41:27 +09:00
parent 2c35a37918
commit 47c45d5c18

View File

@ -416,6 +416,7 @@ module Test
def kill
Process.kill(:KILL, @pid)
warn "worker #{@pid} does not respond; SIGKILL is sent"
rescue Errno::ESRCH
end