summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2015-10-12 18:49:00 +0200
committerByron Jones <glob@mozilla.com>2015-10-12 18:49:00 +0200
commitd69cebd8c703f0a1f6839944f1c949bce350b02e (patch)
tree0c38317335ffe054597a56e281160fb7bcc8ebfb /t
parent07791e2b9be26347cd3e7bbb8a5f004211841908 (diff)
downloadbugzilla-d69cebd8c703f0a1f6839944f1c949bce350b02e.tar.gz
bugzilla-d69cebd8c703f0a1f6839944f1c949bce350b02e.tar.xz
Bug 1199089 - add support for duo-security
Diffstat (limited to 't')
-rw-r--r--t/Support/Files.pm8
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;
}