From abb1497c98a5fc8ed2f5fa05e14332fd73b04023 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 6 Nov 2002 08:29:48 +0000 Subject: [PATCH] output all test case numbers with three digits --- tests/runtests.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/runtests.pl b/tests/runtests.pl index d0061cb..e061bc2 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -506,7 +506,7 @@ sub singletest { # name of the test my @testname= getpart("client", "name"); - print "test $testnum..."; + printf("test %03d...", $testnum); if(!$short) { my $name = $testname[0]; $name =~ s/\n//g; -- 2.7.4