From 0c9447cd00119a0f3c2720d57482520ef79d214d Mon Sep 17 00:00:00 2001 From: deal Date: Fri, 29 Jun 2001 12:34:28 +0000 Subject: [PATCH] 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 --- deal.II/common/scripts/report.pl | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) 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' -- 2.39.5