1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

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

Test case numbers with four digits have been available for a
while now.
This commit is contained in:
Fabian Keil 2014-07-27 12:14:50 +02:00 committed by Dan Fandrich
parent f719a97e12
commit 40e13829af

View File

@ -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");