]> sjero.net Git - wget/blobdiff - tests/run-px
Fix problem with IDN and UTF-8 encoding.
[wget] / tests / run-px
index 5b2f6b5c38d98f0fd20168bca73f96faae2e6c03..21074cc9782c6ff16900a4b13d8a2fbf1895fceb 100755 (executable)
@@ -14,6 +14,7 @@ my @tests = (
     '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',
@@ -37,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',
@@ -148,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');