]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Patch for bug 257106: Make testing suite know about new directory levels in Bugzilla...
authorjocuri%softhome.net <>
Fri, 3 Sep 2004 13:53:58 +0000 (13:53 +0000)
committerjocuri%softhome.net <>
Fri, 3 Sep 2004 13:53:58 +0000 (13:53 +0000)
t/Support/Files.pm

index de5b598c58fa88676ee437c8b7979d92b2133764..de173e83e81a24eb6bd469ddb51f89b29082f184 100644 (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) = @_;