Commit 3344142b authored by Yang Tse's avatar Yang Tse
Browse files

fix enumeration of disabled tests when they have the highest number

parent f1b4f5e2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2543,7 +2543,7 @@ if($skipped) {
        # now show all test case numbers that had this reason for being
        # skipped
        my $c=0;
        for(0 .. $lasttest) {
        for(0 .. scalar @teststat) {
            my $t = $_;
            if($teststat[$_] eq $r) {
                logmsg ", " if($c);