Patch for bug 257106: Make testing suite know about new directory levels in Bugzilla/Auth; patch by Marc Schumann <wurblzap@gmail.com>; r=vladd, a=myk.

git-svn-id: svn://10.0.0.236/trunk@161692 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jocuri%softhome.net 2004-09-03 06:53:58 +00:00
parent a7f61577a1
commit 1a65de5ff0

View File

@ -36,7 +36,8 @@ package Support::Files;
# XXX - this file should really be rewritten to use File::Find or similar
$file = '*';
@files = (glob($file), glob('Bugzilla/*.pm'), glob('Bugzilla/*/*.pm'),
glob('Bugzilla/*/*/*.pm'));
glob('Bugzilla/*/*/*.pm'), glob('Bugzilla/*/*/*/*.pm'),
glob('Bugzilla/*/*/*/*/*.pm'));
sub have_pkg {
my ($pkg) = @_;