From: justdave%syndicomm.com <> Date: Thu, 24 Oct 2002 13:46:22 +0000 (+0000) Subject: require Perl 5.6 X-Git-Tag: bugzilla-2.17.1~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=80b04d87987037a62e3755beeca519246d99b319;p=thirdparty%2Fbugzilla.git require Perl 5.6 --- diff --git a/t/001compile.t b/t/001compile.t index f662f0751e..7e2ec7459d 100644 --- a/t/001compile.t +++ b/t/001compile.t @@ -44,6 +44,12 @@ use Support::Files; use Test::More tests => scalar(@Support::Files::testitems); +# Bugzilla requires Perl 5.6 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; + # Capture the TESTOUT from Test::More or Test::Builder for printing errors. # This will handle verbosity for us automatically. my $fh;