From 681ce77bc0dc5828eae2bb48471db9e373437e4b Mon Sep 17 00:00:00 2001 From: "bbaetz%acm.org" <> Date: Sat, 22 Mar 2003 12:47:09 +0000 Subject: Bug 180642 - Move authentication code into a module r=gerv, justdave a=justdave --- t/Support/Files.pm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 't') 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) = @_; -- cgit v1.2.3-24-g4f1b