[llvm-commits] CVS: llvm/test/Programs/GenerateReport.pl

Chris Lattner lattner at cs.uiuc.edu
Sat Jun 19 18:10:01 PDT 2004


Changes in directory llvm/test/Programs:

GenerateReport.pl updated: 1.20 -> 1.21

---
Log message:

My css-fu is weak, particularly for tables.  However, the sizes of the nightly tester pages are
pretty outrageous.  This change degrades the quality of the tables fairly substantially, but
results in about 50% less HTML to load and render.

If someone wants to play around with different formatting, you can easily do this by going into test/Programs/MultiSource/Benchmarks/Olden
type 'make TEST=nightly report.html'

As you tweak GenerateReport.pl to generate different HTML, just rerun the 
previous make, which will DTRT (ie, it won't rerun all of the tests, it will
just regen the HTML).



---
Diffs of the changes:  (+2 -1)

Index: llvm/test/Programs/GenerateReport.pl
diff -u llvm/test/Programs/GenerateReport.pl:1.20 llvm/test/Programs/GenerateReport.pl:1.21
--- llvm/test/Programs/GenerateReport.pl:1.20	Mon Mar 29 15:14:47 2004
+++ llvm/test/Programs/GenerateReport.pl	Sat Jun 19 18:02:37 2004
@@ -194,7 +194,8 @@
     if ($Str eq '|') {
       print "<td bgcolor='black' width='1'></td>";
     } else {
-      print "<td><table border='0' cellspacing='0' cellpadding='3'><tr><td>$Str</td></tr></table></td>\n";
+      #print "<td><table border='0' cellspacing='0' cellpadding='3'><tr><td>$Str</td></tr></table></td>\n";
+      print "<td>$Str</td>\n";
     }; "";
   }
   sub printLine {





More information about the llvm-commits mailing list