diff options
Diffstat (limited to 't')
-rw-r--r-- | t/Support/Files.pm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/Support/Files.pm b/t/Support/Files.pm index 2898fdd3f..49bfdb8e8 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -27,6 +27,10 @@ use Bugzilla; use File::Find; +use constant IGNORE => qw( + Bugzilla/DuoWeb.pm +); + @additional_files = (); @files = glob('*'); @@ -46,6 +50,10 @@ sub isTestingFile { my ($file) = @_; my $exclude; + foreach my $ignore (IGNORE) { + return undef if $ignore eq $file; + } + if ($file =~ /\.cgi$|\.pl$|\.pm$/) { return 1; } |