From: zach%zachlipton.com <> Date: Wed, 31 Oct 2001 09:06:31 +0000 (+0000) Subject: Have the tests test .pm files as well, yes this creates bustage, this is X-Git-Tag: bugzilla-2.14.1~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6123fc3f0c529e474ea338c109b49af3fec6b52e;p=thirdparty%2Fbugzilla.git Have the tests test .pm files as well, yes this creates bustage, this is intentional! No review needed for tests at this time. --- diff --git a/t/Support/Files.pm b/t/Support/Files.pm index 2396e5d280..63c55ce86b 100644 --- a/t/Support/Files.pm +++ b/t/Support/Files.pm @@ -47,7 +47,7 @@ sub isTestingFile { if ($file eq $exclude) { return undef; } # get rid of excluded files. } - if ($file =~ /\.cgi$|\.pl$/) { + if ($file =~ /\.cgi$|\.pl$|\.pm$/) { return 1; } my $additional;