Changes in directory nightlytest-serverside:

NightlyTestAccept.php updated: 1.49 -> 1.50
---
Log message:

only add to loc if successful build

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

 NightlyTestAccept.php |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletion(-)


Index: nightlytest-serverside/NightlyTestAccept.php
diff -u nightlytest-serverside/NightlyTestAccept.php:1.49 
nightlytest-serverside/NightlyTestAccept.php:1.50
--- nightlytest-serverside/NightlyTestAccept.php:1.49   Sat Sep 16 14:19:18 2006
+++ nightlytest-serverside/NightlyTestAccept.php        Sun Sep 17 05:02:47 2006
@@ -759,7 +759,10 @@
  * Adding lines of code to the database
  *
  
*******************************************************************************/
-UpdateCodeInfo($db_date, $loc, $filesincvs, $dirsincvs);
+if(StringEqual($buildstatus, "OK")) {
+  // only update loc if successful build
+  UpdateCodeInfo($db_date, $loc, $filesincvs, $dirsincvs);
+}
 
 print "received ${_SERVER['CONTENT_LENGTH']} bytes\n";
          



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

Reply via email to