From: lpsolit%gmail.com <> Date: Sat, 19 Aug 2006 01:29:41 +0000 (+0000) Subject: Bug 349198: 001compile.t must not compile mod_perl.pl - Patch by Frédéric Buclin... X-Git-Tag: bugzilla-2.23.3~143 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79c7d0e961d9adf2c3a0459594745afb41b19e4c;p=thirdparty%2Fbugzilla.git Bug 349198: 001compile.t must not compile mod_perl.pl - Patch by Frédéric Buclin r=mkanat a=myk --- diff --git a/t/001compile.t b/t/001compile.t index ebfc4a5d86..7d0bc0181d 100644 --- a/t/001compile.t +++ b/t/001compile.t @@ -65,6 +65,12 @@ foreach my $file (@testitems) { $file =~ s/\s.*$//; # nuke everything after the first space (#comment) next if (!$file); # skip null entries + # Skip mod_perl.pl in all cases. It doesn't compile correctly from the command line. + if ($file eq 'mod_perl.pl') { + ok(1, "Skipping mod_perl.pl"); + next; + } + # Check that we have a DBI module to support the DB, if this is a database # module (but not Schema) if ($file =~ m#Bugzilla/DB/([^/]+)\.pm$# && $file ne "Bugzilla/DB/Schema.pm") {