Changes in directory nightlytest-serverside:

ProgramResults.php updated: 1.69 -> 1.70
---
Log message:

Debugging #13

---
Diffs of the changes:  (+4 -3)

 ProgramResults.php |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)


Index: nightlytest-serverside/ProgramResults.php
diff -u nightlytest-serverside/ProgramResults.php:1.69 
nightlytest-serverside/ProgramResults.php:1.70
--- nightlytest-serverside/ProgramResults.php:1.69      Sat Sep 16 20:18:56 2006
+++ nightlytest-serverside/ProgramResults.php   Sat Sep 16 20:21:15 2006
@@ -611,9 +611,10 @@
       $program = trimTestPath($row['program']);
       $result = $test_hash[$program];
       if ($isset($result)) {
-        $result .= ", ";
+        $result .= ", " . $row['measure'];
+      } else {
+        $result = $row['measure'];
       }
-      $result .= $row['measure'];
       $test_hash[$program] = $result;
     }
   }
@@ -636,7 +637,7 @@
       $program = trimTestPath($row['program']);
       $measure = $row['measure'];
       $result = $test_hash[$program];
-      if (strpos($result, $measure) !== false) {
+      if (strpos("$result", $measure) !== false) {
         $result .= "$program [$measure]\n";
       }
     }



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to