diff options
author | jocuri%softhome.net <> | 2004-09-03 15:53:58 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-09-03 15:53:58 +0200 |
commit | bd0215fc26249dcd3e1fbac00e3b7e7d9b4d8b4b (patch) | |
tree | 3e9e9ccd900855d303d9eeaf42bf015e5a5a165a /t/Support | |
parent | 0717422df6abd37674a3d9977afb1a4874a92c8c (diff) | |
download | bugzilla-bd0215fc26249dcd3e1fbac00e3b7e7d9b4d8b4b.tar.gz bugzilla-bd0215fc26249dcd3e1fbac00e3b7e7d9b4d8b4b.tar.xz |
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.
Diffstat (limited to 't/Support')
-rw-r--r-- | t/Support/Files.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t/Support/Files.pm b/t/Support/Files.pm index de5b598c5..de173e83e 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -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) = @_; |