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

Jim Laskey jlaskey at apple.com
Wed Sep 20 07:21:02 PDT 2006



Changes in directory nightlytest-serverside:

SQLUtil.php updated: 1.6 -> 1.7
---
Log message:

Clean up test records #6

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

 SQLUtil.php |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)


Index: nightlytest-serverside/SQLUtil.php
diff -u nightlytest-serverside/SQLUtil.php:1.6 nightlytest-serverside/SQLUtil.php:1.7
--- nightlytest-serverside/SQLUtil.php:1.6	Wed Sep 20 09:18:54 2006
+++ nightlytest-serverside/SQLUtil.php	Wed Sep 20 09:20:47 2006
@@ -22,6 +22,7 @@
     $old = $row['program'];
     $subpatterns = explode("/llvm/test/", $old, 2);
     $new = $subpatterns[1];
+    print "$count: $new\n";
     if (isset($new)) {
       $new = "test/".$after;
       $result = $row['result'];
@@ -30,9 +31,9 @@
       print "$query\n";
 #      $set_query = mysql_query($query);
 #      mysql_free_result($set_query);
-      $count = $count + 1;
-      if (($count % 100) == 0) break;
     }
+    $count = $count + 1;
+    if (($count % 100) == 0) break;
   }
 
   mysql_free_result($get_query);






More information about the llvm-commits mailing list