Skip to content
runtests.pl 26.1 KiB
Newer Older
    # loop for next test
}

#######################################################################
# Close command log
#
close(CMDLOG);

#######################################################################
# Tests done, stop the servers
for(keys %run) {
    stopserver($run{$_}); # the pid file is in the hash table
}
    printf("$ok tests out of $total reported OK: %d%%\n",
           $ok/$total*100);

    if($ok != $total) {
        print "These test cases failed: $failed\n";
    }
if($skipped) {
    print "$skipped tests were skipped due to restraints\n";
if($total && ($ok != $total)) {
    exit 1;
}