X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=tests%2Frun-px;h=172adcd7ece1f783970e9c4b8fb7eb2289401019;hp=7cab7531de2a7163fbb19e34d1ce88b4de34cfb0;hb=8d7c2219d1965fb1bda16d46bb45e8fe7dc60501;hpb=f6acc704426d67c8a5ae3715ce48b203fb7f756c diff --git a/tests/run-px b/tests/run-px index 7cab7531..172adcd7 100755 --- a/tests/run-px +++ b/tests/run-px @@ -16,11 +16,18 @@ my @tests = ( 'Test-E-k-K.px', 'Test-E-k.px', 'Test-ftp.px', + 'Test-ftp-iri.px', + 'Test-ftp-iri-fallback.px', + 'Test-ftp-iri-disabled.px', 'Test-HTTP-Content-Disposition-1.px', 'Test-HTTP-Content-Disposition-2.px', 'Test-HTTP-Content-Disposition.px', + 'Test-iri.px', + 'Test-iri-disabled.px', + 'Test-iri-forced-remote.px', 'Test-N-current.px', 'Test-N-smaller.px', + 'Test-N-no-info.px', 'Test-N--no-content-disposition.px', 'Test-N--no-content-disposition-trivial.px', 'Test--no-content-disposition.px', @@ -60,3 +67,10 @@ for (my $i=0; $i != @tests; ++$i) { } print "$tests[$i]\n"; } + +print "\n"; +print scalar(@results) . " tests were run\n"; +print scalar(grep $_ == 0, @results) . " PASS\n"; +print scalar(grep $_ != 0, @results) . " FAIL\n"; + +exit scalar (grep $_ != 0, @results);