X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=test%2Fbin%2Fbomb.pl;fp=test%2Fbin%2Fbomb.pl;h=7e9ab0aff6e63ff412a2b52b9c343dad53429939;hp=ae978595c97b61f785cfa3544502277673843876;hb=a914309eea04e44fe857d2b36728bfe90d8f63a9;hpb=d30e346f94d55df9da388745e1709ea7d4523773 diff --git a/test/bin/bomb.pl b/test/bin/bomb.pl index ae97859..7e9ab0a 100755 --- a/test/bin/bomb.pl +++ b/test/bin/bomb.pl @@ -38,17 +38,18 @@ my @system = @ARGV; die usage if $help; die usage if !@system; -# set CPU limit, in case the alarm handler will -# be ignored -eval { - require BSD::Resource; - BSD::Resource::setrlimit( "RLIMIT_CPU", $timeout, 2 * $timeout ) - or die "Cannot set CPU limit: $!\n"; -}; -if ($@) { - warn - "WARNING: things would go more nicely with the BSD::Resource package\n"; -} +# disabled - we set the CPU limit in the wrapper ./bomb +## set CPU limit, in case the alarm handler will +## be ignored +#eval { +# require BSD::Resource; +# BSD::Resource::setrlimit( "RLIMIT_CPU", $timeout, 2 * $timeout ) +# or die "Cannot set CPU limit: $!\n"; +#}; +#if ($@) { +# warn +# "WARNING: things would go more nicely with the BSD::Resource package\n"; +#} # # configure signal handlers @@ -72,4 +73,3 @@ system(@system) == 0 or die "system('@system') failed: ?='$?', !='$!', ^E='$^E'\n"; 1; -