diff options
author | justdave%syndicomm.com <> | 2002-10-24 15:46:22 +0200 |
---|---|---|
committer | justdave%syndicomm.com <> | 2002-10-24 15:46:22 +0200 |
commit | 80b04d87987037a62e3755beeca519246d99b319 (patch) | |
tree | 211ed9b42cea0659a3a334a50495691e2bbb8e4b /t | |
parent | 0a0bdcd72470be0cd1df5f6f36d8f5de8b0af4d5 (diff) | |
download | bugzilla-80b04d87987037a62e3755beeca519246d99b319.tar.gz bugzilla-80b04d87987037a62e3755beeca519246d99b319.tar.xz |
require Perl 5.6
Diffstat (limited to 't')
-rw-r--r-- | t/001compile.t | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/001compile.t b/t/001compile.t index f662f0751..7e2ec7459 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; |