Commit cdc6e3a1 authored by zach%zachlipton.com's avatar zach%zachlipton.com

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
parent 4a8e3d64
...@@ -52,11 +52,8 @@ foreach my $file (@testitems) { ...@@ -52,11 +52,8 @@ foreach my $file (@testitems) {
ok(1,"$file does not have a shebang"); ok(1,"$file does not have a shebang");
} else { } else {
my $flags; my $flags;
if ($file eq "processmail") { if (!defined $ext || $ext eq "pl") {
# special case processmail, which is tainted checked # standalone programs aren't taint checked yet
$flags = "wT";
} elsif (!defined $ext || $ext eq "pl") {
# standalone programs (eg syncshadowdb) aren't taint checked yet
$flags = "w"; $flags = "w";
} elsif ($ext eq "pm") { } elsif ($ext eq "pm") {
ok(0, "$file is a module, but has a shebang"); ok(0, "$file is a module, but has a shebang");
......
...@@ -26,7 +26,7 @@ package Support::Files; ...@@ -26,7 +26,7 @@ package Support::Files;
# exclude_deps is a hash of arrays listing the files to be excluded # exclude_deps is a hash of arrays listing the files to be excluded
# if a module is not available # if a module is not available
# #
@additional_files = ('syncshadowdb','processmail'); @additional_files = ();
%exclude_deps = ( %exclude_deps = (
'XML::Parser' => ['importxml.pl'], 'XML::Parser' => ['importxml.pl'],
); );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment