diff --git a/test/test_helper.rb b/test/test_helper.rb index 7cd313b0..7f48f99a 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -84,6 +84,9 @@ def signal_process(pid, signal, wait: nil) puts "Sending #{signal} to #{pid}" puts `ps aux | grep #{pid}` Process.kill(signal, pid) + rescue Errno::ESRCH + puts "Exception was for #{signal} on process #{pid}" + raise end end