summaryrefslogtreecommitdiffstats
path: root/t/001compile.t
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2007-08-09 19:36:07 +0200
committerlpsolit%gmail.com <>2007-08-09 19:36:07 +0200
commit1226f7f22e4a706b1755d359c07736575ed3af2b (patch)
treedaf80a17edb8e5a3edfe40ae3ee89cadfe115210 /t/001compile.t
parent1e87283250635a69e5d855d1bd5d075253796e88 (diff)
downloadbugzilla-1226f7f22e4a706b1755d359c07736575ed3af2b.tar.gz
bugzilla-1226f7f22e4a706b1755d359c07736575ed3af2b.tar.xz
Bug 361149: Bugzilla now requires Perl 5.8.1 or newer (Perl 5.8.0 throws warnings about deprecated pseudo-hashes) - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 't/001compile.t')
-rw-r--r--t/001compile.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/001compile.t b/t/001compile.t
index 7d0bc0181..fdbe875e3 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.8.0 now. Checksetup will tell you this if you run it, but
+# Bugzilla requires Perl 5.8.1 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.8 won't
-# pass and mistakenly let people think Bugzilla works on any perl below 5.8.
-require 5.008;
+# slip in a compile-time failure if it's missing here so a tinderbox on < 5.8.1 won't
+# pass and mistakenly let people think Bugzilla works on any perl below 5.8.1.
+require 5.008001;
# Capture the TESTOUT from Test::More or Test::Builder for printing errors.
# This will handle verbosity for us automatically.