summaryrefslogtreecommitdiffstats
path: root/t/Support/Files.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/Support/Files.pm')
-rw-r--r--t/Support/Files.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/t/Support/Files.pm b/t/Support/Files.pm
index 108f6541a..e822346d0 100644
--- a/t/Support/Files.pm
+++ b/t/Support/Files.pm
@@ -29,12 +29,13 @@ package Support::Files;
@additional_files = ();
%exclude_deps = (
'XML::Parser' => ['importxml.pl'],
+ 'Net::LDAP' => ['Bugzilla/Auth/LDAP.pm'],
);
-# XXX - this file should be rewritten to use File::Find or similar
+# XXX - this file should really be rewritten to use File::Find or similar
$file = '*';
-@files = (glob($file), glob('Bugzilla/*.pm'));
+@files = (glob($file), glob('Bugzilla/*.pm'), glob('Bugzilla/*/*.pm'));
sub have_pkg {
my ($pkg) = @_;