From eaa936685f9099320de7cc75afd58186ca409c2f Mon Sep 17 00:00:00 2001 From: "bbaetz%student.usyd.edu.au" <> Date: Wed, 14 Aug 2002 07:59:43 +0000 Subject: Bug 162438 - fix permissions/tests for Bugzilla/ directory r=joel x2 --- t/Support/Files.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 't') diff --git a/t/Support/Files.pm b/t/Support/Files.pm index 63c55ce86..e68d08ea7 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -37,8 +37,9 @@ package Support::Files; @additional_files = ('syncshadowdb','processmail'); @exclude_files = ('importxml.pl'); +# XXX - this file should be rewritten to use File::Find or similar $file = '*'; -@files = glob($file); +@files = (glob($file), glob('Bugzilla/*.pm')); sub isTestingFile { my ($file) = @_; -- cgit v1.2.3-24-g4f1b