From 8de64c701e34791c6a0b22c9ffdef71a8c1a759b Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Thu, 2 Mar 2006 07:06:01 +0000 Subject: Bug 314470: Require Perl 5.8 Patch By Max Kanat-Alexander r=justdave, a=justdave --- t/001compile.t | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 't/001compile.t') diff --git a/t/001compile.t b/t/001compile.t index 5ea849ac1..ebfc4a5d8 100644 --- a/t/001compile.t +++ b/t/001compile.t @@ -36,11 +36,11 @@ use Test::More tests => scalar(@Support::Files::testitems); use DBI; my @DBI_drivers = DBI->available_drivers; -# Bugzilla requires Perl 5.6.1 now. Checksetup will tell you this if you run it, but +# Bugzilla requires Perl 5.8.0 now. Checksetup will tell you this if you run it, but # it tests it in a polite/passive way that won't make it fail at compile time. We'll -# slip in a compile-time failure if it's missing here so a tinderbox on 5.00503 won't -# pass and mistakenly let people think Bugzilla works on 5.00503 -require 5.006_001; +# slip in a compile-time failure if it's missing here so a tinderbox on < 5.8 won't +# pass and mistakenly let people think Bugzilla works on any perl below 5.8. +require 5.008; # Capture the TESTOUT from Test::More or Test::Builder for printing errors. # This will handle verbosity for us automatically. -- cgit v1.2.3-24-g4f1b