[llvm-commits] CVS: nightlytest-serverside/ProgramResults.php
Jim Laskey
jlaskey at apple.com
Fri Sep 8 04:42:14 PDT 2006
Changes in directory nightlytest-serverside:
ProgramResults.php updated: 1.37 -> 1.38
---
Log message:
Adding reasons to newly passing/failing step #4
---
Diffs of the changes: (+3 -2)
ProgramResults.php | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Index: nightlytest-serverside/ProgramResults.php
diff -u nightlytest-serverside/ProgramResults.php:1.37 nightlytest-serverside/ProgramResults.php:1.38
--- nightlytest-serverside/ProgramResults.php:1.37 Fri Sep 8 06:36:10 2006
+++ nightlytest-serverside/ProgramResults.php Fri Sep 8 06:41:58 2006
@@ -599,7 +599,7 @@
/*
* Get list of newly passing tests
*
- * Returns a list of tests for a given night that were excluded from the
+ * Returns a list of tests for a given night that were included in the
* hash and now pass.
*/
function getPassingTests($id, $table, $test_hash){
@@ -609,7 +609,8 @@
while ($row = mysql_fetch_array($program_query)) {
$test_key = $row['program'];
if (isset($test_hash[$test_key]) && isTestPass($row['result'])) {
- $result .= $test_key . "<br>\n";
+ $reasons = getFailReasons($test_hash[$test_key]);
+ $result .= "{$test_key}{$reasons)<br>\n";
}
}
mysql_free_result($program_query);
More information about the llvm-commits
mailing list