Changes in directory nightlytest-serverside:
ProgramResults.php updated: 1.65 -> 1.66 --- Log message: Debugging #9 --- Diffs of the changes: (+1 -2) ProgramResults.php | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) Index: nightlytest-serverside/ProgramResults.php diff -u nightlytest-serverside/ProgramResults.php:1.65 nightlytest-serverside/ProgramResults.php:1.66 --- nightlytest-serverside/ProgramResults.php:1.65 Sat Sep 16 19:48:41 2006 +++ nightlytest-serverside/ProgramResults.php Sat Sep 16 19:50:03 2006 @@ -421,7 +421,6 @@ $program = "test/" . $tail; } return rtrim($program, ": ");; - return $program; } @@ -596,7 +595,7 @@ * an asterix appears by each tool that has failed. */ function isTestPass($test_result) { - return !(strcmp($test_result, "FAIL") == 0 || strpos($test_result, "*") !== false); + return !(StringEqual($test_result, "FAIL") || strpos($test_result, "*") !== false); } /* _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits