diff options
author | bbaetz%student.usyd.edu.au <> | 2002-08-14 09:59:43 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-08-14 09:59:43 +0200 |
commit | eaa936685f9099320de7cc75afd58186ca409c2f (patch) | |
tree | cbf2d68887db2a6fb016f243b4bb443beac734a3 /t/Support | |
parent | f9e05e2778aa373cb29c2cc49a470b184981f24d (diff) | |
download | bugzilla-eaa936685f9099320de7cc75afd58186ca409c2f.tar.gz bugzilla-eaa936685f9099320de7cc75afd58186ca409c2f.tar.xz |
Bug 162438 - fix permissions/tests for Bugzilla/ directory
r=joel x2
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 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) = @_; |