[SCM] build.samba.org - branch master updated

Jelmer Vernooij jelmer at samba.org
Sun Nov 21 13:30:40 MST 2010


The branch, master has been updated
       via  62a518e Look for timeouts harder.
      from  7876537 Fix author selection box.

http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 62a518ea568695babf221b005ce69470593f3d78
Author: Jelmer Vernooij <jelmer at samba.org>
Date:   Sun Nov 21 21:29:55 2010 +0100

    Look for timeouts harder.

-----------------------------------------------------------------------

Summary of changes:
 buildfarm/data.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/buildfarm/data.py b/buildfarm/data.py
index ed4a7cd..d1b8f17 100644
--- a/buildfarm/data.py
+++ b/buildfarm/data.py
@@ -152,7 +152,7 @@ def build_status_from_logs(log, err):
         if l.startswith("No space left on device"):
             ret.other_failures.add("disk full")
             continue
-        if l.startswith("maximum runtime exceeded"):
+        if "maximum runtime exceeded" in l: # Ugh.
             ret.other_failures.add("timeout")
             continue
         if l.startswith("PANIC:") or l.startswith("INTERNAL ERROR:"):


-- 
build.samba.org


More information about the samba-cvs mailing list