From d0c8fb0f03f7bac469fc2543d93b84433256700b Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Fri, 27 Jun 2014 13:54:52 +0200 Subject: [PATCH] make the package BSD::Resource optional You should install the package on a server, but it does not hurt if it is missing. --- test/bin/bomb.pl | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/test/bin/bomb.pl b/test/bin/bomb.pl index 9e0f06b..bff7f68 100755 --- a/test/bin/bomb.pl +++ b/test/bin/bomb.pl @@ -6,7 +6,6 @@ use Getopt::Long; use POSIX ":sys_wait_h"; -use BSD::Resource qw/setrlimit/; use strict; use warnings; @@ -41,7 +40,14 @@ die usage if !@system; # set CPU limit, in case the alarm handler will # be ignored -setrlimit("RLIMIT_CPU", $timeout, 2*$timeout) or die "Cannot set CPU limit: $!\n"; +eval { + require BSD::Resource2; + setrlimit("RLIMIT_CPU", $timeout, 2*$timeout) or die "Cannot set CPU limit: $!\n"; +}; +if ($@) { + warn "Please install the package BSD::Resource!\n\n$@\n"; +} + # # use fork/exec instead system() -- 1.7.10.4