Skip to content
runtests.pl 85.4 KiB
Newer Older
        logmsg "TESTFAIL: These test cases failed: $failed\n";
    logmsg "TESTFAIL: No tests were performed\n";
    logmsg "TESTDONE: $all tests were considered during $sofar seconds.\n";
if($skipped) {
    logmsg "TESTINFO: $skipped tests were skipped due to these restraints:\n";
        printf "TESTINFO: \"%s\" %d times (", $r, $skipped{$_};

        # now show all test case numbers that had this reason for being
        # skipped
        my $c=0;
                logmsg ", " if($c);
                logmsg $_;
if($total && ($ok != $total)) {
    exit 1;
}