[llvm-commits] CVS: nightlytest-serverside/ProgramResults.php

Jim Laskey jlaskey at apple.com
Thu Aug 31 11:45:01 PDT 2006



Changes in directory nightlytest-serverside:

ProgramResults.php updated: 1.30 -> 1.31
---
Log message:

Oops - reverse logic.


---
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.30 nightlytest-serverside/ProgramResults.php:1.31
--- nightlytest-serverside/ProgramResults.php:1.30	Thu Aug 31 13:42:11 2006
+++ nightlytest-serverside/ProgramResults.php	Thu Aug 31 13:44:47 2006
@@ -415,7 +415,7 @@
           $phase = $phases[$i];
           if (!isTestPass($phase)) {
             list($tool, $tool_result) = split(": ", $phase);
-            if (strcmp($failing_tools, "") == 0) {
+            if (strcmp($failing_tools, "") != 0) {
               $failing_tools .= ", ";
             }
             $failing_tools .= $tool;






More information about the llvm-commits mailing list