From a07f057d55d7423ec6044a8da4a347a1eeca7309 Mon Sep 17 00:00:00 2001 From: "zach%zachlipton.com" Date: Wed, 31 Oct 2001 01:06:31 +0000 Subject: [PATCH] Have the tests test .pm files as well, yes this creates bustage, this is intentional! No review needed for tests at this time. --- webtools/bugzilla/t/Support/Files.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/t/Support/Files.pm b/webtools/bugzilla/t/Support/Files.pm index 2396e5d2806..63c55ce86be 100644 --- a/webtools/bugzilla/t/Support/Files.pm +++ b/webtools/bugzilla/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;