From 088b5126544704b6be8b34d667b27da6c5817855 Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Sun, 2 Aug 1998 23:26:51 +0000 Subject: [PATCH] t/TEST aesthetic tweak suggested by Jarkko p4raw-id: //depot/maint-5.005/perl@1718 --- t/TEST | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/t/TEST b/t/TEST index c1d1905..3685c2a 100755 --- a/t/TEST +++ b/t/TEST @@ -48,6 +48,14 @@ EOT $total = @tests; $files = 0; $totmax = 0; + $maxlen = 0; + foreach (@tests) { + $len = length; + $maxlen = $len if $len > $maxlen; + } + # +3 : we want three dots between the test name and the "ok" + # -2 : the .t suffix + $dotdotdot = $maxlen + 3 - 2; while ($test = shift @tests) { if ( $infinite{$test} && $type eq 'compile' ) { @@ -59,7 +67,7 @@ EOT } $te = $test; chop($te); - print "$te" . '.' x (18 - length($te)); + print "$te" . '.' x ($dotdotdot - length($te)); open(SCRIPT,"<$test") or die "Can't run $test.\n"; $_ =