X-Git-Url: http://sjero.net/git/?a=blobdiff_plain;f=tests%2Frun-px;h=c18c8d85ac227de593e20fc03244b4ae09ca4b4f;hb=090f1596ae2eb446c265a62849f59657a9ee9e07;hp=febb0de4db001ada69b256443d21398624d206fa;hpb=e17633e99c3eff326ace71ed6970c491aa42845c;p=wget diff --git a/tests/run-px b/tests/run-px index febb0de4..c18c8d85 100755 --- a/tests/run-px +++ b/tests/run-px @@ -12,13 +12,21 @@ my @tests = ( 'Test--spider.px', 'Test-c-full.px', 'Test-c-partial.px', + 'Test-c-shorter.px', 'Test-c.px', '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-iri-list.px', 'Test-N-current.px', 'Test-N-smaller.px', 'Test-N-no-info.px', @@ -36,6 +44,7 @@ my @tests = ( 'Test-O--no-content-disposition-trivial.px', 'Test-O-nonexisting.px', 'Test-O.px', + 'Test-O-nc.px', 'Test-Restrict-Lowercase.px', 'Test-Restrict-Uppercase.px', 'Test--spider-fail.px', @@ -61,3 +70,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);