From 2a01aaae072eb38bcb560d9b8c09e8c8ea4d7af6 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Mon, 22 Sep 2014 14:55:57 +0200 Subject: [PATCH] Less alarming warning if BSD::Resource module is unavailable. --- 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 a79be99..95e7dd5 100755 --- a/test/bin/bomb.pl +++ b/test/bin/bomb.pl @@ -45,7 +45,7 @@ eval { 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"; } -- 1.7.10.4