sent signal TERM instead INT
authorWolfram Schneider <wosch@indexdata.dk>
Mon, 7 Sep 2015 09:38:30 +0000 (09:38 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Mon, 7 Sep 2015 09:38:30 +0000 (09:38 +0000)
TERM seems to be more common for non-interactive scripts

test/bin/bomb.pl

index 2dde3d4..b993c7a 100755 (executable)
@@ -62,7 +62,7 @@ $SIG{ALRM} = sub {
     warn "Command: @system\n";
 
     # kill process group
     warn "Command: @system\n";
 
     # kill process group
-    kill "INT", -$pgid;
+    kill "TERM", -$pgid;
 };
 
 # don't kill ourself
 };
 
 # don't kill ourself