X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=tests%2FTest-ftp-iri.px;h=a4b7fe1be9d3274da9a4bfd071e049851b483f3a;hp=78e2622c51ccbb5d613b8bd0eb4305a8f7a31314;hb=320cfdcb658e8d6556ae9dfd902c2db1db866a6b;hpb=d5e283b1a75c5f8249300b465b4e7b55130bec49 diff --git a/tests/Test-ftp-iri.px b/tests/Test-ftp-iri.px index 78e2622c..a4b7fe1b 100755 --- a/tests/Test-ftp-iri.px +++ b/tests/Test-ftp-iri.px @@ -1,8 +1,9 @@ -#!/usr/bin/perl +#!/usr/bin/env perl use strict; use warnings; +use WgetFeature qw(iri); use FTPTest; @@ -25,7 +26,7 @@ my %urls = ( }, ); -my $cmdline = $WgetTest::WGETPATH . " --locale=iso-8859-1 -S ftp://localhost:{{port}}/fran${ccedilla_l1}ais.txt"; +my $cmdline = $WgetTest::WGETPATH . " --local-encoding=iso-8859-1 -S ftp://localhost:{{port}}/fran${ccedilla_l1}ais.txt"; my $expected_error_code = 0; @@ -38,9 +39,9 @@ my %expected_downloaded_files = ( ############################################################################### my $the_test = FTPTest->new (name => "Test-ftp-iri", - input => \%urls, - cmdline => $cmdline, - errcode => $expected_error_code, + input => \%urls, + cmdline => $cmdline, + errcode => $expected_error_code, output => \%expected_downloaded_files); exit $the_test->run();