mirror of
https://github.com/curl/curl.git
synced 2026-07-26 07:17:16 +03:00
fix enumeration of disabled tests when they have the highest number
This commit is contained in:
parent
f1b4f5e2ae
commit
3344142b87
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue