test: Avoid pgrep -q, not available with GNU pgrep
This commit is contained in:
parent
7c719b756f
commit
4ab7eb93d7
@ -33,7 +33,7 @@ rescue Exception => e # rubocop:disable Lint/RescueException
|
|||||||
error_pipe.puts e.to_json
|
error_pipe.puts e.to_json
|
||||||
error_pipe.close
|
error_pipe.close
|
||||||
pid = Process.pid.to_s
|
pid = Process.pid.to_s
|
||||||
if which("pgrep") && which("pkill") && system("pgrep", "-qP", pid)
|
if which("pgrep") && which("pkill") && system("pgrep", "-P", pid, out: :close)
|
||||||
$stderr.puts "Killing child processes..."
|
$stderr.puts "Killing child processes..."
|
||||||
system "pkill", "-P", pid
|
system "pkill", "-P", pid
|
||||||
sleep 1
|
sleep 1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user