From: deal Date: Fri, 29 Jun 2001 12:34:28 +0000 (+0000) Subject: Poor man's implementation of putting the test case names into cols. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c9447cd00119a0f3c2720d57482520ef79d214d;p=dealii-svn.git Poor man's implementation of putting the test case names into cols. git-svn-id: https://svn.dealii.org/trunk@4779 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/common/scripts/report.pl b/deal.II/common/scripts/report.pl index 1f01e88ea2..b7b3c88035 100644 --- a/deal.II/common/scripts/report.pl +++ b/deal.II/common/scripts/report.pl @@ -107,9 +107,16 @@ EOT ; -# output the list of test cases +# output the list of test cases. always put four in a row +$col = 0; foreach $name (sort keys %testcase) { - print "$testcase{$name} $name\n"; + if ($col == 0) { + print "\n"; + } + print " $testcase{$name} $name\n"; + + # next column. if at end, wrap around + $col = ($col+1)%4; } print <<'EOT'