diff options
| author | Fabian Keil <fk@fabiankeil.de> | 2014-07-27 12:14:50 +0200 | 
|---|---|---|
| committer | Dan Fandrich <dan@coneharvesters.com> | 2014-08-07 10:17:25 +0200 | 
| commit | 40e13829afab4999543f1baf4fa2ca7390206f44 (patch) | |
| tree | 634b937a4a6a31239072cb37ac52f085899770ca /tests/runtests.pl | |
| parent | f719a97e12e35a61ac41ed3cfefe8a3b85ad27e2 (diff) | |
runtests.pl: Pad test case numbers with up to three zeroes
Test case numbers with four digits have been available for a
while now.
Diffstat (limited to 'tests/runtests.pl')
| -rwxr-xr-x | tests/runtests.pl | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/tests/runtests.pl b/tests/runtests.pl index d0410649d..f52678c49 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"); | 
