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

Jim Laskey jlaskey at apple.com
Wed Aug 30 11:52:10 PDT 2006



Changes in directory nightlytest-serverside:

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

Debugging newly pass fail report attempt #2.


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

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


Index: nightlytest-serverside/ProgramResults.php
diff -u nightlytest-serverside/ProgramResults.php:1.10 nightlytest-serverside/ProgramResults.php:1.11
--- nightlytest-serverside/ProgramResults.php:1.10	Wed Aug 30 13:47:30 2006
+++ nightlytest-serverside/ProgramResults.php	Wed Aug 30 13:51:55 2006
@@ -495,14 +495,14 @@
   }
   else{
     $test_hash=array();
-    $query = "SELECT * FROM tests WHERE night=$prev_id";
+    $query = "SELECT * FROM tests WHERE night=$cur_id";
     $program_query = mysql_query($query) or die (mysql_error());
     while($row = mysql_fetch_array($program_query)){
       $test_hash["{$row['measure']} - {$row['program']}"]=1;
     }
     mysql_free_result($program_query);
 
-    $query = "SELECT * FROM tests WHERE night=$cur_id";
+    $query = "SELECT * FROM tests WHERE night=$prev_id";
     $program_query = mysql_query($query) or die (mysql_error());
     while($row = mysql_fetch_array($program_query)){
       $test_key = "{$row['measure']} - {$row['program']}";






More information about the llvm-commits mailing list