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

Patrick Jenkins pjenkins at apple.com
Wed Aug 2 15:12:29 PDT 2006



Changes in directory nightlytest-serverside:

ProgramResults.php updated: 1.4 -> 1.5
---
Log message:

IFixed some indentation issues 



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

 ProgramResults.php |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)


Index: nightlytest-serverside/ProgramResults.php
diff -u nightlytest-serverside/ProgramResults.php:1.4 nightlytest-serverside/ProgramResults.php:1.5
--- nightlytest-serverside/ProgramResults.php:1.4	Wed Aug  2 12:41:10 2006
+++ nightlytest-serverside/ProgramResults.php	Wed Aug  2 17:12:13 2006
@@ -134,13 +134,14 @@
     $data = str_replace("<br>", " ", $data);
     foreach ($array_of_measures as $x){
       $value=array();
-                  $reg_exp="/$x:\s*([[0-9\.]+|\*|\-|n\/a|\?],)/";
-                  preg_match($reg_exp, $data, $value);
+      $reg_exp="/$x:\s*([[0-9\.]+|\*|\-|n\/a|\?],)/";
+      //print "running preg_match($reg_exp, $data, $value)<br>\n";
+      preg_match($reg_exp, $data, $value);
       if(isset($value[1])){
         array_push($result["{$row['program']}"], $value[1]);
       }
-                  else{
-                          array_push($result["{$row['program']}"], "-");  
+      else{
+        array_push($result["{$row['program']}"], "-");  
       }
       $index++;
     }//end foreach






More information about the llvm-commits mailing list