]> sjero.net Git - wget/blobdiff - tests/run-px
Warn about state of Windows builds.
[wget] / tests / run-px
index 1a441c7b843836ae41c72249c6e3860f2c016b70..0f058b9e3ec8208646dbb232bac3eb07e6835d1a 100755 (executable)
@@ -13,6 +13,7 @@ my @tests = (
     'Test-auth-basic.px',
     'Test-auth-no-challenge.px',
     'Test-auth-no-challenge-url.px',
+    'Test-auth-with-content-disposition.px',
     'Test-cookies.px',
     'Test-cookies-401.px',
     'Test-proxy-auth-basic.px',
@@ -147,9 +148,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');