From: Fabian Keil Date: Sun, 27 Jul 2014 10:14:50 +0000 (+0200) Subject: runtests.pl: Pad test case numbers with up to three zeroes X-Git-Tag: curl-7_38_0~135 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40e13829afab4999543f1baf4fa2ca7390206f44;p=thirdparty%2Fcurl.git runtests.pl: Pad test case numbers with up to three zeroes Test case numbers with four digits have been available for a while now. --- diff --git a/tests/runtests.pl b/tests/runtests.pl index d0410649dd..f52678c498 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -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");