Skip to content

Commit

Permalink
runtests.pl: Pad test case numbers with up to three zeroes
Browse files Browse the repository at this point in the history
Test case numbers with four digits have been available for a
while now.
  • Loading branch information
fabiankeil authored and dfandrich committed Aug 7, 2014
1 parent f719a97 commit 40e1382
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/runtests.pl
Expand Up @@ -3113,14 +3113,14 @@ sub singletest {
if(!$short) {
if($skipped{$why} <= 3) {
# show only the first three skips for each reason
logmsg sprintf("test %03d SKIPPED: $why\n", $testnum);
logmsg sprintf("test %04d SKIPPED: $why\n", $testnum);
}
}

timestampskippedevents($testnum);
return -1;
}
logmsg sprintf("test %03d...", $testnum) if(!$automakestyle);
logmsg sprintf("test %04d...", $testnum) if(!$automakestyle);

# extract the reply data
my @reply = getpart("reply", "data");
Expand Down

0 comments on commit 40e1382

Please sign in to comment.