include the failed test case numbers in the end summary

This commit is contained in:
Daniel Stenberg 2001-03-12 13:46:23 +00:00
parent e97fc2aab5
commit 070968abbc
1 changed files with 12 additions and 4 deletions

View File

@ -679,6 +679,7 @@ open(CMDLOG, ">$CURLLOG") ||
# The main test-loop
#
my $failed;
my $testnum;
my $ok=0;
my $total=0;
@ -689,10 +690,13 @@ foreach $testnum (split(" ", $TESTCASES)) {
# valid test case number
$total++;
}
if(($error>0) && !$anyway) {
# a test failed, abort
print "\n - abort tests\n";
last;
if($error>0) {
if(!$anyway) {
# a test failed, abort
print "\n - abort tests\n";
last;
}
$failed.= "$testnum ";
}
elsif(!$error) {
$ok++;
@ -715,6 +719,10 @@ stopserver($PIDFILE);
if($total) {
print "$ok tests out of $total reported OK\n";
if($ok != $total) {
print "These test cases failed: $failed\n";
}
}
else {
print "No tests were performed!\n";