Changes in directory nightlytest-serverside:
ProgramResults.php updated: 1.74 -> 1.75 --- Log message: Debugging #16 --- Diffs of the changes: (+4 -8) ProgramResults.php | 12 ++++-------- 1 files changed, 4 insertions(+), 8 deletions(-) Index: nightlytest-serverside/ProgramResults.php diff -u nightlytest-serverside/ProgramResults.php:1.74 nightlytest-serverside/ProgramResults.php:1.75 --- nightlytest-serverside/ProgramResults.php:1.74 Sat Sep 16 20:29:31 2006 +++ nightlytest-serverside/ProgramResults.php Sat Sep 16 20:32:05 2006 @@ -609,18 +609,14 @@ while ($row = mysql_fetch_assoc($program_query)) { if (!isTestPass($row['result'])) { $program = trimTestPath($row['program']); - $test_hash[$program] = $row['measure']; - -/* - + $measure = $row['measure']; $result = $test_hash[$program]; - if ($isset($result)) { - $result .= ", " . $row['measure']; + if (isset($result)) { + $result .= ", " . $measure; } else { - $result = $row['measure']; + $result = $measure; } $test_hash[$program] = $result; - */ } } mysql_free_result($program_query); _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits