Changes in directory nightlytest-serverside:
ProgramResults.php updated: 1.95 -> 1.96 --- Log message: Get rid of empty test. --- Diffs of the changes: (+3 -1) ProgramResults.php | 4 +++- 1 files changed, 3 insertions(+), 1 deletion(-) Index: nightlytest-serverside/ProgramResults.php diff -u nightlytest-serverside/ProgramResults.php:1.95 nightlytest-serverside/ProgramResults.php:1.96 --- nightlytest-serverside/ProgramResults.php:1.95 Fri Oct 20 16:07:23 2006 +++ nightlytest-serverside/ProgramResults.php Sat Oct 21 06:46:50 2006 @@ -396,7 +396,9 @@ $phase = $phases[$i]; if (strpos($phase, "*") !== false) { list($tool, $tool_result) = split(": ", $phase); - array_push($result, $tool); + if (strlen($tool) != 0) { + array_push($result, $tool); + } } } _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits