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) {
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");
......
......@@ -26,7 +26,7 @@ package Support::Files;
# exclude_deps is a hash of arrays listing the files to be excluded
# if a module is not available
#
@additional_files = ('syncshadowdb','processmail');
@additional_files = ();
%exclude_deps = (
'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