[Commits] [svn:einsteintoolkit] www/release-info/ (Rev. 237)

knarf at cct.lsu.edu knarf at cct.lsu.edu
Wed Jun 16 14:29:29 CDT 2010


User: knarf
Date: 2010/06/16 02:29 PM

Modified:
 /release-info/
  parse_testsuite_results.cgi

Log:
 don't output total of successfull testsuites, as we already output total number

File Changes:

Directory: /release-info/
=========================

File [modified]: parse_testsuite_results.cgi
Delta lines: +3 -4
===================================================================
--- release-info/parse_testsuite_results.cgi	2010-06-16 19:27:50 UTC (rev 236)
+++ release-info/parse_testsuite_results.cgi	2010-06-16 19:29:29 UTC (rev 237)
@@ -127,7 +127,7 @@
     $table_entries .= "</tr>\n"; $tr="<tr>";
   }
 }
-$table_entries .= "<tr><th rowspan='3' colspan='2'>Totals</th>";
+$table_entries .= "<tr><th rowspan='3' colspan='2'>Total failing</th>";
 foreach my $host (sort(keys(%allhosts))) {
   $table_entries .= "<th colspan='".scalar(keys(%{$allhosts{$host}}))."'>$host</th>";
 }
@@ -144,9 +144,8 @@
   foreach my $nprocs (sort(keys(%{$allhosts{$host}}))) {
     my $color = " style=\"background-color:#d0d0d0;\"";
     if ($nprocs != "1") { $color = " style=\"background-color:#e0e0e0;\""; }
-    $table_entries .= "<td$color>(".$allhosts{$host}{$nprocs}{"success"}."/<b>".
-                                    $allhosts{$host}{$nprocs}{"fail"}."</b>)/".
-                                    $allhosts{$host}{$nprocs}{"ran"}."</td>";
+    $table_entries .= "<td$color>/<b>".$allhosts{$host}{$nprocs}{"fail"}."</b>/".
+                                       $allhosts{$host}{$nprocs}{"ran"}."</td>";
   }
 }
 $table_entries .= "</tr>\n";



More information about the Commits mailing list