Skip to content
Snippets Groups Projects
Commit 40e13829 authored by Fabian Keil's avatar Fabian Keil Committed by Dan Fandrich
Browse files

runtests.pl: Pad test case numbers with up to three zeroes

Test case numbers with four digits have been available for a
while now.
parent f719a97e
No related branches found
No related tags found
No related merge requests found
...@@ -3113,14 +3113,14 @@ sub singletest { ...@@ -3113,14 +3113,14 @@ sub singletest {
if(!$short) { if(!$short) {
if($skipped{$why} <= 3) { if($skipped{$why} <= 3) {
# show only the first three skips for each reason # 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); timestampskippedevents($testnum);
return -1; return -1;
} }
logmsg sprintf("test %03d...", $testnum) if(!$automakestyle); logmsg sprintf("test %04d...", $testnum) if(!$automakestyle);
# extract the reply data # extract the reply data
my @reply = getpart("reply", "data"); my @reply = getpart("reply", "data");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment