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

Patrick Jenkins pjenkins at apple.com
Thu Jul 27 12:18:03 PDT 2006



Changes in directory nightlytest-serverside:

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

Tweaked the coloring scheme so that we dont consider test submissions with failed builds


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

 machine.php |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletion(-)


Index: nightlytest-serverside/machine.php
diff -u nightlytest-serverside/machine.php:1.3 nightlytest-serverside/machine.php:1.4
--- nightlytest-serverside/machine.php:1.3	Mon Jul 10 14:27:51 2006
+++ nightlytest-serverside/machine.php	Thu Jul 27 14:17:49 2006
@@ -360,7 +360,12 @@
 			print "<a href=\"test.php?machine=$machine&night={$row['id']}\">View details</a>\n";
 		echo "</td>";
 	echo "</tr>";
-	$row = $prev_row;
+	
+	#this is to ensure we dont compare a test's statistics against
+	#a test that failed and has bogus statistics
+	if($build_ok){
+		$row = $prev_row;
+	}
 	$x++;
 } #end while
 






More information about the llvm-commits mailing list