]> https://gitweb.dealii.org/ - dealii-svn.git/commitdiff
Poor man's implementation of putting the test case names into cols.
authordeal <deal@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 29 Jun 2001 12:34:28 +0000 (12:34 +0000)
committerdeal <deal@0785d39b-7218-0410-832d-ea1e28bc413d>
Fri, 29 Jun 2001 12:34:28 +0000 (12:34 +0000)
git-svn-id: https://svn.dealii.org/trunk@4779 0785d39b-7218-0410-832d-ea1e28bc413d

deal.II/common/scripts/report.pl

index 1f01e88ea26aea650905d9bd42febf864f5698dd..b7b3c88035fd7d4086bb959fcd92e5b3c3993204 100644 (file)
@@ -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 "<tr><td>$testcase{$name} <td>$name\n";
+    if ($col == 0) {
+       print "<tr>\n";
+    }
+    print "   <td>$testcase{$name} <td>$name\n";
+
+    # next column. if at end, wrap around
+    $col = ($col+1)%4;
 }
 
 print <<'EOT'

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.