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

Jim Laskey jlaskey at apple.com
Sun Sep 17 03:03:01 PDT 2006



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";
          






More information about the llvm-commits mailing list