summaryrefslogtreecommitdiffstats
path: root/t/002goodperl.t
diff options
context:
space:
mode:
authorzach%zachlipton.com <>2003-02-10 14:01:28 +0100
committerzach%zachlipton.com <>2003-02-10 14:01:28 +0100
commitcdc6e3a1a5177e8bcdee48ac5521b91b5fc486d1 (patch)
treea9e550a94fde4e70d63b5603b4018f6f39f0c37e /t/002goodperl.t
parent4a8e3d64a5af8ae7a82cdb7bbbc39afbf38184b4 (diff)
downloadbugzilla-cdc6e3a1a5177e8bcdee48ac5521b91b5fc486d1.tar.gz
bugzilla-cdc6e3a1a5177e8bcdee48ac5521b91b5fc486d1.tar.xz
Partial fix for bug 192513 (processmail cleanup). Patch fixes test files
to disregard processmail since it no longer exists (it was special-cased before). r=dave, a=dave
Diffstat (limited to 't/002goodperl.t')
-rw-r--r--t/002goodperl.t7
1 files changed, 2 insertions, 5 deletions
diff --git a/t/002goodperl.t b/t/002goodperl.t
index 0ac921c1f..f6f14adb5 100644
--- a/t/002goodperl.t
+++ b/t/002goodperl.t
@@ -52,11 +52,8 @@ foreach my $file (@testitems) {
ok(1,"$file does not have a shebang");
} else {
my $flags;
- if ($file eq "processmail") {
- # special case processmail, which is tainted checked
- $flags = "wT";
- } elsif (!defined $ext || $ext eq "pl") {
- # standalone programs (eg syncshadowdb) aren't taint checked yet
+ if (!defined $ext || $ext eq "pl") {
+ # standalone programs aren't taint checked yet
$flags = "w";
} elsif ($ext eq "pm") {
ok(0, "$file is a module, but has a shebang");