Commit 79c7d0e9 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 349198: 001compile.t must not compile mod_perl.pl - Patch by Frédéric Buclin…

Bug 349198: 001compile.t must not compile mod_perl.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
parent 6ec682ac
......@@ -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") {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment