From 988569fdc1d4b8047f3255989997a051663a5dfb Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Mon, 7 Sep 2015 09:38:30 +0000 Subject: [PATCH] sent signal TERM instead INT TERM seems to be more common for non-interactive scripts --- test/bin/bomb.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/bin/bomb.pl b/test/bin/bomb.pl index 2dde3d4..b993c7a 100755 --- a/test/bin/bomb.pl +++ b/test/bin/bomb.pl @@ -62,7 +62,7 @@ $SIG{ALRM} = sub { warn "Command: @system\n"; # kill process group - kill "INT", -$pgid; + kill "TERM", -$pgid; }; # don't kill ourself -- 1.7.10.4