[llvm-commits] CVS: nightlytest-serverside/fulltest.php

Patrick Jenkins pjenkins at apple.com
Wed Jul 19 09:13:42 PDT 2006



Changes in directory nightlytest-serverside:

fulltest.php updated: 1.3 -> 1.4
---
Log message:

Rearranged tables of program tests at the bottom of the page so that the order is now: external tests, multisource tests, singlesource tests.


---
Diffs of the changes:  (+15 -16)

 fulltest.php |   31 +++++++++++++++----------------
 1 files changed, 15 insertions(+), 16 deletions(-)


Index: nightlytest-serverside/fulltest.php
diff -u nightlytest-serverside/fulltest.php:1.3 nightlytest-serverside/fulltest.php:1.4
--- nightlytest-serverside/fulltest.php:1.3	Fri Jul  7 19:32:18 2006
+++ nightlytest-serverside/fulltest.php	Wed Jul 19 11:13:30 2006
@@ -543,12 +543,11 @@
 print "</table>\n";
 print "</td></tr></table><br><br>\n"; #ending black border around table
 
+/********************** Multisource table **********************/
 
-/********************** Singlesource table **********************/
-
-print"<b>Singlesource tests:</b><br>\n";
+print"<b>Multisource tests:</b><br>\n";
 print "<table border='0' cellspacing='0' cellpadding='2'><tr><td bgcolor=#000000>\n"; #creating the black border around the table 
-print "<table class=\"sortable\" id=\"singlesource_tests\" border='1' cellspacing='0' cellpadding='0'>\n";
+print "<table class=\"sortable\" id=\"multisource_tests\" border='1' cellspacing='0' cellpadding='0'>\n";
 print "\t<tr bgcolor=#FFCC99>\n";	
 print "\t\t<th>Program</th>\n";	
 $index=0; //here to ensure we dont print %diff for GCC comparisons
@@ -572,9 +571,9 @@
 	}
 	print "\t\t<td colspan=\"$col_width\" align=center><input type=checkbox name=\"measure[]\" multiple=\"multiple\" value=\"$x\">\n";
 	print "<span style=\"position:relative;\">\n";
-	print "<span id=\"single_$index\" class=\"popup2\">\n";
+	print "<span id=\"multi_$index\" class=\"popup2\">\n";
 	print "<pre>{$category_print_array_description[$index]}</pre>\n";
-	print "</span><a href=\"javascript:void(0);\" onClick=\"TogglePop('single_$index');\">?</a></span>\n";
+	print "</span><a href=\"javascript:void(0);\" onClick=\"TogglePop('multi_$index');\">?</a></span>\n";
 	print "</td>\n";
 	$index++;
 }
@@ -582,7 +581,7 @@
 $row_color=1;
 $count=0;
 foreach(array_keys($today_results) as $program){
-	if(strcmp($today_results["$program"][0],"singlesource")==0){
+	if(strcmp($today_results["$program"][0],"multisource")==0){
 		if($row_color % 2 == 0){
 			$def_color="white";
 		}
@@ -610,12 +609,15 @@
 print "</table>\n";
 print "</td></tr></table><br><br>\n"; #ending black border around table
 
+print "<input type=submit name=action value=\"Compare values\"> | ";
+print "<input type=reset>\n";
+print "</form>\n";
 
-/********************** Multisource table **********************/
+/********************** Singlesource table **********************/
 
-print"<b>Multisource tests:</b><br>\n";
+print"<b>Singlesource tests:</b><br>\n";
 print "<table border='0' cellspacing='0' cellpadding='2'><tr><td bgcolor=#000000>\n"; #creating the black border around the table 
-print "<table class=\"sortable\" id=\"multisource_tests\" border='1' cellspacing='0' cellpadding='0'>\n";
+print "<table class=\"sortable\" id=\"singlesource_tests\" border='1' cellspacing='0' cellpadding='0'>\n";
 print "\t<tr bgcolor=#FFCC99>\n";	
 print "\t\t<th>Program</th>\n";	
 $index=0; //here to ensure we dont print %diff for GCC comparisons
@@ -639,9 +641,9 @@
 	}
 	print "\t\t<td colspan=\"$col_width\" align=center><input type=checkbox name=\"measure[]\" multiple=\"multiple\" value=\"$x\">\n";
 	print "<span style=\"position:relative;\">\n";
-	print "<span id=\"multi_$index\" class=\"popup2\">\n";
+	print "<span id=\"single_$index\" class=\"popup2\">\n";
 	print "<pre>{$category_print_array_description[$index]}</pre>\n";
-	print "</span><a href=\"javascript:void(0);\" onClick=\"TogglePop('multi_$index');\">?</a></span>\n";
+	print "</span><a href=\"javascript:void(0);\" onClick=\"TogglePop('single_$index');\">?</a></span>\n";
 	print "</td>\n";
 	$index++;
 }
@@ -649,7 +651,7 @@
 $row_color=1;
 $count=0;
 foreach(array_keys($today_results) as $program){
-	if(strcmp($today_results["$program"][0],"multisource")==0){
+	if(strcmp($today_results["$program"][0],"singlesource")==0){
 		if($row_color % 2 == 0){
 			$def_color="white";
 		}
@@ -677,9 +679,6 @@
 print "</table>\n";
 print "</td></tr></table><br><br>\n"; #ending black border around table
 
-print "<input type=submit name=action value=\"Compare values\"> | ";
-print "<input type=reset>\n";
-print "</form>\n";
 
 
 mysql_close($mysql_link);






More information about the llvm-commits mailing list