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
 



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

Reply via email to