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

Jim Laskey jlaskey at apple.com
Thu Sep 14 10:37:43 PDT 2006



Changes in directory nightlytest-serverside:

NightlyTestAccept.php updated: 1.39 -> 1.40
---
Log message:

testing #38

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

 NightlyTestAccept.php |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)


Index: nightlytest-serverside/NightlyTestAccept.php
diff -u nightlytest-serverside/NightlyTestAccept.php:1.39 nightlytest-serverside/NightlyTestAccept.php:1.40
--- nightlytest-serverside/NightlyTestAccept.php:1.39	Thu Sep 14 12:34:26 2006
+++ nightlytest-serverside/NightlyTestAccept.php	Thu Sep 14 12:37:29 2006
@@ -850,7 +850,7 @@
       $perc = ($diff / $value_old) * 100;
     }
     
-    if (true || $perc > 5 || $perc < -5) {
+    if ($perc > 5 || $perc < -5) {
       $changes = $output_big_changes[$measure];
       
       if (!isset($changes)) {
@@ -879,8 +879,6 @@
 $passing = getFixedTests($night_id, $prev_night);
 $failing = getBrokenTests($night_id, $prev_night);
 
-die;
-
 if ($print_debug) {
   print "Determined changes in new tests and old tests\n";
 }
@@ -953,8 +951,7 @@
 chdir("$curr/machines");
 
 if (!file_exists("$machine_id")) {
-    mkdir("$machine_id", 777);
-    
+  mkdir("$machine_id", 777);
 }
 chdir("$curr/machines/$machine_id");
 






More information about the llvm-commits mailing list