[llvm-commits] CVS: nightlytest-serverside/ProgramResults.php
Jim Laskey
jlaskey at apple.com
Sat Sep 16 18:28:03 PDT 2006
Changes in directory nightlytest-serverside:
ProgramResults.php updated: 1.72 -> 1.73
---
Log message:
Debugging #15
---
Diffs of the changes: (+1 -1)
ProgramResults.php | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: nightlytest-serverside/ProgramResults.php
diff -u nightlytest-serverside/ProgramResults.php:1.72 nightlytest-serverside/ProgramResults.php:1.73
--- nightlytest-serverside/ProgramResults.php:1.72 Sat Sep 16 20:25:22 2006
+++ nightlytest-serverside/ProgramResults.php Sat Sep 16 20:27:48 2006
@@ -604,7 +604,6 @@
*/
function getTestFailSet($id) {
$test_hash = array();
- return $test_hash;
$query = "SELECT program, result, measure FROM tests WHERE night=$id ORDER BY program ASC, measure ASC";
$program_query = mysql_query($query) or die (mysql_error());
while ($row = mysql_fetch_assoc($program_query)) {
@@ -620,6 +619,7 @@
}
}
mysql_free_result($program_query);
+ return array();
return $test_hash;
}
More information about the llvm-commits
mailing list