]> sjero.net Git - wget/blobdiff - tests/run-px
Fix problem with IDN and UTF-8 encoding.
[wget] / tests / run-px
index 52101fc6720bc2f7eddbb63f1914f70840e3159f..21074cc9782c6ff16900a4b13d8a2fbf1895fceb 100755 (executable)
@@ -13,6 +13,8 @@ my @tests = (
     'Test-auth-basic.px',
     'Test-auth-no-challenge.px',
     'Test-auth-no-challenge-url.px',
+    'Test-auth-with-content-disposition.px',
+    'Test-auth-retcode.px',
     'Test-cookies.px',
     'Test-cookies-401.px',
     'Test-proxy-auth-basic.px',
@@ -27,6 +29,7 @@ my @tests = (
     'Test-E-k.px',
     'Test-ftp.px',
     'Test-ftp-pasv-fail.px',
+    'Test-ftp-bad-list.px',
     'Test-ftp-recursive.px',
     'Test-ftp-iri.px',
     'Test-ftp-iri-fallback.px',
@@ -35,10 +38,14 @@ my @tests = (
     'Test-HTTP-Content-Disposition-1.px',
     'Test-HTTP-Content-Disposition-2.px',
     'Test-HTTP-Content-Disposition.px',
+    'Test-i-ftp.px',
+    'Test-i-http.px',
     'Test-idn-headers.px',
     'Test-idn-meta.px',
     'Test-idn-cmd.px',
+    'Test-idn-cmd-utf8.px',
     'Test-idn-robots.px',
+    'Test-idn-robots-utf8.px',
     'Test-iri.px',
     'Test-iri-percent.px',
     'Test-iri-disabled.px',
@@ -146,9 +153,9 @@ my $summary = sub
 }->();
 
 print "\n";
-print $count->('fail')
+print $count->('fail') || $count->('unknown')
   ? colored($summary, 'red')
   : colored($summary, 'green');
 print "\n";
 
-exit $count->('fail');
+exit $count->('fail') + $count->('unknown');