[llvm-commits] CVS: nightlytest-serverside/ProgramResults.php
Jim Laskey
jlaskey at apple.com
Mon Sep 11 10:55:45 PDT 2006
Changes in directory nightlytest-serverside:
ProgramResults.php updated: 1.50 -> 1.51
---
Log message:
Isolating why #3
---
Diffs of the changes: (+2 -1)
ProgramResults.php | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: nightlytest-serverside/ProgramResults.php
diff -u nightlytest-serverside/ProgramResults.php:1.50 nightlytest-serverside/ProgramResults.php:1.51
--- nightlytest-serverside/ProgramResults.php:1.50 Mon Sep 11 12:51:35 2006
+++ nightlytest-serverside/ProgramResults.php Mon Sep 11 12:55:31 2006
@@ -422,7 +422,8 @@
function getFailures($night_id) {
$result="";
if ($night_id >= 684) {
- $query = "SELECT * FROM tests WHERE night=$night_id AND result=\"FAIL\" ORDER BY program ASC";
+// $query = "SELECT * FROM tests WHERE night=$night_id AND result=\"FAIL\" ORDER BY program ASC";
+ $query = "SELECT * FROM tests WHERE night=$night_id ORDER BY program ASC";
$program_query = mysql_query($query) or die (mysql_error());
while($row = mysql_fetch_array($program_query)) {
$program = rtrim($row['program'], ": ");
More information about the llvm-commits
mailing list