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
This commit is contained in:
zach%zachlipton.com 2003-02-10 05:01:32 +00:00
Родитель 648a26a3e3
Коммит 37a8dc1bf9
2 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -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'],
);