From 7e9c5c45d3fb9cf758dcf9f5589a5af3ddb8602c Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Sun, 27 Jul 2014 12:14:50 +0200
Subject: [PATCH 2/3] runtests.pl: Pad test case numbers with up to three
 zeroes

Test case numbers with four digits have been available for a
while now.
---
 tests/runtests.pl | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/runtests.pl b/tests/runtests.pl
index f761f34..89dc5dd 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -3167,14 +3167,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");
-- 
1.9.0


