[llvm-commits] CVS: nightlytest-serverside/ProgramResults.php
Jim Laskey
jlaskey at apple.com
Thu Aug 31 11:11:47 PDT 2006
Changes in directory nightlytest-serverside:
ProgramResults.php updated: 1.28 -> 1.29
---
Log message:
Inspect the fail results.
---
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.28 nightlytest-serverside/ProgramResults.php:1.29
--- nightlytest-serverside/ProgramResults.php:1.28 Thu Aug 31 12:34:16 2006
+++ nightlytest-serverside/ProgramResults.php Thu Aug 31 13:11:33 2006
@@ -407,7 +407,7 @@
$program_query = mysql_query($query) or die (mysql_error());
while($row = mysql_fetch_array($program_query)) {
if (!isTestPass($row['result'])) {
- $result .= $row['program'] . "<br>\n";
+ $result .= "{$row['program']} [{$row['result']}]<br>\n";
}
}
mysql_free_result($program_query);
More information about the llvm-commits
mailing list