summaryrefslogtreecommitdiffstats
path: root/t/001compile.t
diff options
context:
space:
mode:
authormkanat%kerio.com <>2005-02-17 19:16:02 +0100
committermkanat%kerio.com <>2005-02-17 19:16:02 +0100
commit9f5bff4524923dfa2f377fbaead0dfd1286f890c (patch)
tree93b2da5d8688c40e846bcc55e6ffbc68767e02ea /t/001compile.t
parent5601df4505bb893aea5956bceefa28abf9014e5d (diff)
downloadbugzilla-9f5bff4524923dfa2f377fbaead0dfd1286f890c.tar.gz
bugzilla-9f5bff4524923dfa2f377fbaead0dfd1286f890c.tar.xz
Bug 282509: Bugzilla now requires perl 5.6.1
Patch By Max Kanat-Alexander <mkanat@kerio.com> r,a=justdave
Diffstat (limited to 't/001compile.t')
-rw-r--r--t/001compile.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/001compile.t b/t/001compile.t
index ee46a5a85..303724848 100644
--- a/t/001compile.t
+++ b/t/001compile.t
@@ -32,11 +32,11 @@ 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
+# Bugzilla requires Perl 5.6.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.00503 won't
# pass and mistakenly let people think Bugzilla works on 5.00503
-require 5.006;
+require 5.006_001;
# Capture the TESTOUT from Test::More or Test::Builder for printing errors.
# This will handle verbosity for us automatically.