[llvm-commits] CVS: nightlytest-serverside/ProgramResults.php
Jim Laskey
jlaskey at apple.com
Fri Sep 1 03:51:42 PDT 2006
Changes in directory nightlytest-serverside:
ProgramResults.php updated: 1.32 -> 1.33
---
Log message:
Not working correctly.
---
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.32 nightlytest-serverside/ProgramResults.php:1.33
--- nightlytest-serverside/ProgramResults.php:1.32 Fri Sep 1 05:48:04 2006
+++ nightlytest-serverside/ProgramResults.php Fri Sep 1 05:51:27 2006
@@ -559,7 +559,7 @@
* an asterix appears by each tool that has failed.
*/
function isTestPass($test_result) {
- return strcmp($test_result, "FAIL") != 0 ||
+ return strcmp($test_result, "PASS") == 0 ||
strpos($test_result, "*") === false;
}
More information about the llvm-commits
mailing list