Return-Path: Delivered-To: apmail-httpd-test-cvs-archive@www.apache.org Received: (qmail 58202 invoked from network); 4 Aug 2004 18:56:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 4 Aug 2004 18:56:40 -0000 Received: (qmail 26369 invoked by uid 500); 4 Aug 2004 18:48:00 -0000 Delivered-To: apmail-httpd-test-cvs-archive@httpd.apache.org Received: (qmail 26270 invoked by uid 500); 4 Aug 2004 18:47:59 -0000 Mailing-List: contact test-cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: test-dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list test-cvs@httpd.apache.org Received: (qmail 26217 invoked by uid 99); 4 Aug 2004 18:47:58 -0000 X-ASF-Spam-Status: No, hits=-2.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.27.1) with SMTP; Wed, 04 Aug 2004 11:47:53 -0700 Received: (qmail 51493 invoked by uid 1462); 4 Aug 2004 18:47:51 -0000 Date: 4 Aug 2004 18:47:51 -0000 Message-ID: <20040804184751.51492.qmail@minotaur.apache.org> From: geoff@apache.org To: httpd-test-cvs@apache.org Subject: cvs commit: httpd-test/perl-framework/Apache-Test/lib/Apache Test.pm X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N geoff 2004/08/04 11:47:51 Modified: perl-framework/Apache-Test/lib/Apache Test.pm Log: use no warnings qw(numeric) in need_min_module_version to allow for comparisons where the module version is non-standard, like need_min_module_version(qw(Test::Builder 0.18_01)); Revision Changes Path 1.89 +1 -1 httpd-test/perl-framework/Apache-Test/lib/Apache/Test.pm Index: Test.pm =================================================================== RCS file: /home/cvs/httpd-test/perl-framework/Apache-Test/lib/Apache/Test.pm,v retrieving revision 1.88 retrieving revision 1.89 diff -u -r1.88 -r1.89 --- Test.pm 2 Aug 2004 19:00:05 -0000 1.88 +++ Test.pm 4 Aug 2004 18:47:50 -0000 1.89 @@ -254,7 +254,7 @@ # need_module requires the perl module return 0 unless need_module($module); - return 1 if eval { $module->VERSION($version) }; + return 1 if eval { no warnings qw(numeric); $module->VERSION($version) }; push @SkipReasons, "$module version $version or higher is required"; return 0;