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

2006-08-31 Thread Jim Laskey


Changes in directory nightlytest-serverside:

fulltest.php updated: 1.15 -> 1.16
---
Log message:

Reflect the change in arguments.


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

 fulltest.php |2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)


Index: nightlytest-serverside/fulltest.php
diff -u nightlytest-serverside/fulltest.php:1.15 
nightlytest-serverside/fulltest.php:1.16
--- nightlytest-serverside/fulltest.php:1.15Mon Aug 21 15:21:55 2006
+++ nightlytest-serverside/fulltest.php Thu Aug 31 13:10:50 2006
@@ -179,7 +179,7 @@
  * Printing failures in test suite
  *
  **/
-$failing_tests=getFailures($night_id, $previous_succesful_id, $mysql_link);
+$failing_tests=getFailures($night_id);
 if(strcmp($failing_tests,"")===0){
   $newly_failing_tests="None";
 }



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


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

2006-08-18 Thread Patrick Jenkins


Changes in directory nightlytest-serverside:

fulltest.php updated: 1.13 -> 1.14
NightlyTester.php updated: 1.16 -> 1.17
---
Log message:

Made several changes that should cut down on php error messages that
appear in the httpd/error_log.



---
Diffs of the changes:  (+7 -3)

 NightlyTester.php |8 ++--
 fulltest.php  |2 +-
 2 files changed, 7 insertions(+), 3 deletions(-)


Index: nightlytest-serverside/fulltest.php
diff -u nightlytest-serverside/fulltest.php:1.13 
nightlytest-serverside/fulltest.php:1.14
--- nightlytest-serverside/fulltest.php:1.13Thu Aug 17 22:50:18 2006
+++ nightlytest-serverside/fulltest.php Fri Aug 18 13:52:08 2006
@@ -566,7 +566,7 @@
 
 $today_results = GetDayResults($today_row['id'], $category_array, $mysql_link);
 if(isset($yesterday_row['id'])){
-  $yesterday_results = GetDayResults($yesterday_row['id'], 
$category_print_array, $mysql_link);
+  $yesterday_results = GetDayResults($yesterday_row['id'], $category_array, 
$mysql_link);
   $percent_difference = CalculateChangeBetweenDays($yesterday_results, 
$today_results,.2);  
 }
 /** external table **/


Index: nightlytest-serverside/NightlyTester.php
diff -u nightlytest-serverside/NightlyTester.php:1.16 
nightlytest-serverside/NightlyTester.php:1.17
--- nightlytest-serverside/NightlyTester.php:1.16   Thu Aug 17 22:50:18 2006
+++ nightlytest-serverside/NightlyTester.phpFri Aug 18 13:52:08 2006
@@ -262,11 +262,15 @@
   $cur_sum=0;
   $prev_sum=0;
   $old_sum=0;
+  $prev_diff=0;
+  $prev_delta=0;
+  $old_diff=0;
+  $old_delta=0;
 
   foreach (array_keys($cur_data) as $file){
 $cur_sum+=$cur_data["$file"];
 
-if(isset($prev_night["$file"]) && isset($cur_night["$file"])) {
+if(isset($prev_data["$file"]) && isset($cur_data["$file"])) {
   $prev_delta= ( $cur_data["$file"] - $prev_data["$file"] );
   $prev_diff = (($cur_data["$file"] - $prev_data["$file"]) / 
$prev_data["$file"] ) * 100;
   $prev_sum+=$prev_data["$file"];
@@ -274,7 +278,7 @@
   $prev_diff="-";
 }
 
-if(isset($old_night["$file"]) && isset($cur_data["$file"])){
+if(isset($old_data["$file"]) && isset($cur_data["$file"])){
   $old_delta= ( $cur_data["$file"] - $old_data["$file"] );
   $old_diff = (($cur_data["$file"] - $old_data["$file"]) / 
$old_data["$file"] ) * 100;
   $old_sum+=$old_data["$file"];



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


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

2006-08-10 Thread Patrick Jenkins


Changes in directory nightlytest-serverside:

fulltest.php updated: 1.11 -> 1.12
---
Log message:

the execution time window now defaults to being closed



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

 fulltest.php |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: nightlytest-serverside/fulltest.php
diff -u nightlytest-serverside/fulltest.php:1.11 
nightlytest-serverside/fulltest.php:1.12
--- nightlytest-serverside/fulltest.php:1.11Thu Aug  3 16:07:24 2006
+++ nightlytest-serverside/fulltest.php Thu Aug 10 17:35:02 2006
@@ -265,8 +265,8 @@
  *
  **/
 
-print "(+) Execution Times\n";
-print "\n";
+print "(-) Execution Times\n";
+print "\n";
 print"Execution times in seconds:\n";
 print "\n";
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


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

2006-08-03 Thread Patrick Jenkins


Changes in directory nightlytest-serverside:

fulltest.php updated: 1.10 -> 1.11
---
Log message:

Since we only print out the important eye catching file size changes in the 
brief test page, i made it so all file sizes and their changes are printed out 
in the detailed page. 



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

 fulltest.php |4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: nightlytest-serverside/fulltest.php
diff -u nightlytest-serverside/fulltest.php:1.10 
nightlytest-serverside/fulltest.php:1.11
--- nightlytest-serverside/fulltest.php:1.10Thu Aug  3 12:05:39 2006
+++ nightlytest-serverside/fulltest.php Thu Aug  3 16:07:24 2006
@@ -505,7 +505,7 @@
 print "\t\n";
 
 foreach (array_keys($all_data) as $d){
-  if($all_data["$d"][1]!=0 || $all_data["$d"][3]!=0){
+  //if($all_data["$d"][1]!=0 || $all_data["$d"][3]!=0){
 print "\t\n";
 if(strcmp($d, "Total Sum")!=0){
   print "\t\t\n";
@@ -537,7 +537,7 @@
 print "\t\t{$all_data["$d"][4]}\n";
 
 print "\t\n";
-  }
+//}
 }
 
 print "\n";



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


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

2006-08-02 Thread Patrick Jenkins


Changes in directory nightlytest-serverside:

fulltest.php updated: 1.8 -> 1.9
---
Log message:

We now print out file size differences in bytes and in %




---
Diffs of the changes:  (+19 -7)

 fulltest.php |   26 +++---
 1 files changed, 19 insertions(+), 7 deletions(-)


Index: nightlytest-serverside/fulltest.php
diff -u nightlytest-serverside/fulltest.php:1.8 
nightlytest-serverside/fulltest.php:1.9
--- nightlytest-serverside/fulltest.php:1.8 Wed Aug  2 18:00:07 2006
+++ nightlytest-serverside/fulltest.php Wed Aug  2 18:30:32 2006
@@ -481,7 +481,7 @@
 
 $all_data=buildFileSizeTable($mysql_link, $machine_id, $night_id);
 
-print "Total size: {$all_data['Total Sum'][0]}\n";
+print "Total size: {$all_data['Total Sum'][0]} bytes\n";
 print "Difference from previous test: {$all_data['Total 
Sum'][1]}\n";
 print "Difference from five tests ago: {$all_data['Total 
Sum'][2]}\n";
 
@@ -490,10 +490,17 @@
 print "\t\tFile\n";
 print "\t\tFile Size in Bytes\n";
 print "\t\t% difference from previous test\n";
+print "\t\tByte difference from previous test\n";
 print "\t\t% difference from five tests ago\n";
+print "\t\tByte difference from five tests ago\n";
 print "\t\n";
 
 print "\t\n";
+print "\n";
+print "\n";
+print "\n";
+print "\n";
+print "\n";
 print "\t\n";
 
 foreach (array_keys($all_data) as $d){
@@ -509,20 +516,25 @@
 print "\t\t{$all_data["$d"][0]}\n";
 
 if($all_data["$d"][1]!=0){
-  $color="color:".DetermineColor($all_data["$d"][1], "white");
+  $color="bgcolor=";
+  $color.=DetermineColor($all_data["$d"][1], "\"\"");
 }
 else{
   $color="";
 }
 print "\t\t{$all_data["$d"][1]}\n";
-
-if($all_data["$d"][2]!=0){
-  $color="color:"+DetermineColor($all_data["$d"][2], "white");
+print "\t\t{$all_data["$d"][2]}\n";
+
+if($all_data["$d"][3]!=0){
+  $color="bgolor=";
+  $color.=DetermineColor($all_data["$d"][3], "white");
 }
 else{
   $color="";
-}print "\t\t{$all_data["$d"][2]}\n";
-
+}
+print "\t\t{$all_data["$d"][3]}\n";
+print "\t\t{$all_data["$d"][4]}\n";
+
 print "\t\n";
   }
 }



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


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

2006-08-02 Thread Patrick Jenkins


Changes in directory nightlytest-serverside:

fulltest.php updated: 1.7 -> 1.8
---
Log message:

Pruned down how many file sizes are shown so that only files that have changed 
have their file sizes changed.



---
Diffs of the changes:  (+27 -12)

 fulltest.php |   39 +++
 1 files changed, 27 insertions(+), 12 deletions(-)


Index: nightlytest-serverside/fulltest.php
diff -u nightlytest-serverside/fulltest.php:1.7 
nightlytest-serverside/fulltest.php:1.8
--- nightlytest-serverside/fulltest.php:1.7 Wed Aug  2 17:11:12 2006
+++ nightlytest-serverside/fulltest.php Wed Aug  2 18:00:07 2006
@@ -497,19 +497,34 @@
 print "\t\n";
 
 foreach (array_keys($all_data) as $d){
-  print "\t\n";
-  if(strcmp($d, "Total Sum")!=0){
-print "\t\t\n";
+  if($all_data["$d"][1]!=0 || $all_data["$d"][2]!=0){
+print "\t\n";
+if(strcmp($d, "Total Sum")!=0){
+  print "\t\t\n";
+}
+else{
+  print "\t\t\n";
+}
+print "\t\t$d\n";
+print "\t\t{$all_data["$d"][0]}\n";
+
+if($all_data["$d"][1]!=0){
+  $color="color:".DetermineColor($all_data["$d"][1], "white");
+}
+else{
+  $color="";
+}
+print "\t\t{$all_data["$d"][1]}\n";
+
+if($all_data["$d"][2]!=0){
+  $color="color:"+DetermineColor($all_data["$d"][2], "white");
+}
+else{
+  $color="";
+}print "\t\t{$all_data["$d"][2]}\n";
+
+print "\t\n";
   }
-  else{
-print "\t\t\n";
-  }
-  print "\t\t$d\n";
-  print "\t\t{$all_data["$d"][0]}\n";
-  print "\t\t{$all_data["$d"][1]}\n";
-  print "\t\t{$all_data["$d"][2]}\n";
-  
-  print "\t\n";
 }
 
 print "\n";



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


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

2006-08-02 Thread Patrick Jenkins


Changes in directory nightlytest-serverside:

fulltest.php updated: 1.6 -> 1.7
---
Log message:

We now print out file size information over time.



---
Diffs of the changes:  (+43 -0)

 fulltest.php |   43 +++
 1 files changed, 43 insertions(+)


Index: nightlytest-serverside/fulltest.php
diff -u nightlytest-serverside/fulltest.php:1.6 
nightlytest-serverside/fulltest.php:1.7
--- nightlytest-serverside/fulltest.php:1.6 Tue Aug  1 18:57:43 2006
+++ nightlytest-serverside/fulltest.php Wed Aug  2 17:11:12 2006
@@ -474,6 +474,49 @@
 
 print"File Size information:\n";
 
+print "\n";
+print "\n";
+print "\n";
+print "\n";
+
+$all_data=buildFileSizeTable($mysql_link, $machine_id, $night_id);
+
+print "Total size: {$all_data['Total Sum'][0]}\n";
+print "Difference from previous test: {$all_data['Total 
Sum'][1]}\n";
+print "Difference from five tests ago: {$all_data['Total 
Sum'][2]}\n";
+
+print "\n";
+print "\t\n";
+print "\t\tFile\n";
+print "\t\tFile Size in Bytes\n";
+print "\t\t% difference from previous test\n";
+print "\t\t% difference from five tests ago\n";
+print "\t\n";
+
+print "\t\n";
+print "\t\n";
+
+foreach (array_keys($all_data) as $d){
+  print "\t\n";
+  if(strcmp($d, "Total Sum")!=0){
+print "\t\t\n";
+  }
+  else{
+print "\t\t\n";
+  }
+  print "\t\t$d\n";
+  print "\t\t{$all_data["$d"][0]}\n";
+  print "\t\t{$all_data["$d"][1]}\n";
+  print "\t\t{$all_data["$d"][2]}\n";
+  
+  print "\t\n";
+}
+
+print "\n";
+print " | ";
+print "\n";
+print "\n";
+
 print "\n";
 
 



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


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

2006-07-27 Thread Patrick Jenkins


Changes in directory nightlytest-serverside:

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

Added link to build log


---
Diffs of the changes:  (+24 -0)

 fulltest.php |   24 
 1 files changed, 24 insertions(+)


Index: nightlytest-serverside/fulltest.php
diff -u nightlytest-serverside/fulltest.php:1.4 
nightlytest-serverside/fulltest.php:1.5
--- nightlytest-serverside/fulltest.php:1.4 Wed Jul 19 11:13:30 2006
+++ nightlytest-serverside/fulltest.php Thu Jul 27 14:11:12 2006
@@ -96,6 +96,17 @@
 
 /*
  *
+ * Printing link to build log
+ *
+ **/
+$buildfile=str_replace(" ", "_", $cur_date);
+if(file_exists("machines/$machine_id/$buildfile-Build-Log.txt")){
+   print "".
+ "View Build Log\n";
+}
+
+/*
+ *
  * Printing the times table
  *
  **/
@@ -455,6 +466,19 @@
 
 /*
  *
+ * Printing file size information
+ *
+ **/
+print "(-) CVS information\n";
+print "\n";
+
+print"File Size information:\n";
+
+print "\n";
+
+
+/*
+ *
  * ending sidebar table here
  *
  **/



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits


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

2006-07-19 Thread Patrick Jenkins


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 "\n";
 print "\n"; #ending black border around table
 
+/** Multisource table **/
 
-/** Singlesource table **/
-
-print"Singlesource tests:\n";
+print"Multisource tests:\n";
 print "\n"; #creating the black border around the table 
-print "\n";
+print "\n";
 print "\t\n";  
 print "\t\tProgram\n";
 $index=0; //here to ensure we dont print %diff for GCC comparisons
@@ -572,9 +571,9 @@
}
print "\t\t\n";
print "\n";
-   print "\n";
+   print "\n";
print "{$category_print_array_description[$index]}\n";
-   print "?\n";
+   print "?\n";
print "\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 "\n";
 print "\n"; #ending black border around table
 
+print " | ";
+print "\n";
+print "\n";
 
-/** Multisource table **/
+/** Singlesource table **/
 
-print"Multisource tests:\n";
+print"Singlesource tests:\n";
 print "\n"; #creating the black border around the table 
-print "\n";
+print "\n";
 print "\t\n";  
 print "\t\tProgram\n";
 $index=0; //here to ensure we dont print %diff for GCC comparisons
@@ -639,9 +641,9 @@
}
print "\t\t\n";
print "\n";
-   print "\n";
+   print "\n";
print "{$category_print_array_description[$index]}\n";
-   print "?\n";
+   print "?\n";
print "\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 "\n";
 print "\n"; #ending black border around table
 
-print " | ";
-print "\n";
-print "\n";
 
 
 mysql_close($mysql_link);



___
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits