From: Dave Miller Date: Sat, 18 Nov 2023 08:28:01 +0000 (-0500) Subject: Bug 1851412: fix warning in 001compile test (#144) X-Git-Tag: bugzilla-5.2~37 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=db172903e337d182f7d2672745a6378312176745;p=thirdparty%2Fbugzilla.git Bug 1851412: fix warning in 001compile test (#144) --- diff --git a/t/001compile.t b/t/001compile.t index a341dd0d2d..e9ee6deb7d 100644 --- a/t/001compile.t +++ b/t/001compile.t @@ -84,7 +84,9 @@ SKIP: { # 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$} and $file ne "Bugzilla/DB/Schema.pm") { + if ($file =~ m{Bugzilla/DB/([^/]+)\.pm$} + and $file ne "Bugzilla/DB/Schema.pm" + and $file ne "Bugzilla/DB/QuoteIdentifier.pm") { my $module = lc($1); my $dbd = DB_MODULE->{$module}->{dbd}->{module}; eval("use $dbd; 1") or skip "$file: $dbd not installed", 1;