X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Fbin%2Fbomb.pl;h=ae978595c97b61f785cfa3544502277673843876;hb=fd831c63e414e24a0c596d93beb35f41c73762e5;hp=a79be99be621ebb4609f0cf728cd779780974f11;hpb=996eb9ae88f39ad326adcfa07fa468af9b756cc6;p=mkws-moved-to-github.git diff --git a/test/bin/bomb.pl b/test/bin/bomb.pl index a79be99..ae97859 100755 --- a/test/bin/bomb.pl +++ b/test/bin/bomb.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -# Copyright (c) 2014 IndexData ApS. http://indexdata.com +# Copyright (c) 2014 Index Data ApS. http://indexdata.com # # bomb.pl - wrapper to stop a process after N seconds # @@ -42,26 +42,34 @@ die usage if !@system; # be ignored eval { require BSD::Resource; - BSD::Resource::setrlimit("RLIMIT_CPU", $timeout, 2*$timeout) or die "Cannot set CPU limit: $!\n"; + BSD::Resource::setrlimit( "RLIMIT_CPU", $timeout, 2 * $timeout ) + or die "Cannot set CPU limit: $!\n"; }; if ($@) { - warn "Please install the package BSD::Resource!\n\n$@\n"; + warn + "WARNING: things would go more nicely with the BSD::Resource package\n"; } - # -# use fork/exec instead system() +# configure signal handlers # -$pid = fork(); -die "fork() failed: $!" unless defined $pid; +$SIG{ALRM} = sub { + my $pgid = getpgrp(); -# child -if ($pid) { - alarm($timeout); - exec(@system) or die "exec @system: $!\n"; -} + warn "Alarm handler got called after $timeout seconds\n"; + warn "Kill now the process group $pgid\n\n"; + + # kill process group + kill "INT", -$pgid; +}; -# parent -else { } +# don't kill ourself +$SIG{INT} = "IGNORE"; + +alarm($timeout); + +system(@system) == 0 + or die "system('@system') failed: ?='$?', !='$!', ^E='$^E'\n"; 1; +