From 47c45d5c18cfc232295082edefda01c6294f4958 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Wed, 7 Aug 2024 02:41:27 +0900 Subject: [PATCH] Add a log when SIGKILL is sent to a test parallel worker --- tool/lib/test/unit.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/tool/lib/test/unit.rb b/tool/lib/test/unit.rb index 6175b2a531..0b352060af 100644 --- a/tool/lib/test/unit.rb +++ b/tool/lib/test/unit.rb @@ -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