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

Matthieu Patou mat at samba.org
Fri Nov 26 10:36:47 MST 2010


The branch, master has been updated
       via  71282e4 detect more timeout situations
       via  1baee0a add definition for burns to raise the time limit
      from  b3d46fd Export variables for timelimit

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


- Log -----------------------------------------------------------------
commit 71282e4f0e22bd96e073b556d8cb13aa6186915c
Author: Matthieu Patou <mat at matws.net>
Date:   Thu Nov 25 13:17:57 2010 +0300

    detect more timeout situations

commit 1baee0a1d800c44c677e6ec73d91567d4a95b315
Author: Matthieu Patou <mat at matws.net>
Date:   Thu Nov 25 12:08:01 2010 +0300

    add definition for burns to raise the time limit

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

Summary of changes:
 buildfarm/build.py |    3 +++
 burns.fns          |    7 +++++++
 2 files changed, 10 insertions(+), 0 deletions(-)
 create mode 100644 burns.fns


Changeset truncated at 500 lines:

diff --git a/buildfarm/build.py b/buildfarm/build.py
index b0938dc..b218788 100644
--- a/buildfarm/build.py
+++ b/buildfarm/build.py
@@ -169,6 +169,9 @@ def build_status_from_logs(log, err):
         if l.startswith("No space left on device"):
             ret.other_failures.add("disk full")
             continue
+        if "Maximum time expired in timelimit" in l: # Ugh.
+            ret.other_failures.add("timeout")
+            continue
         if "maximum runtime exceeded" in l: # Ugh.
             ret.other_failures.add("timeout")
             continue
diff --git a/burns.fns b/burns.fns
new file mode 100644
index 0000000..60e8764
--- /dev/null
+++ b/burns.fns
@@ -0,0 +1,7 @@
+
+MAXTIME=28800 # 8 hours
+SMBD_MAXTIME=25200 # 7 hours for a samba process ..
+# default maximum memory size (100M) for any command
+export MAXTIME SMBD_MAXTIME
+
+. generic.fns


-- 
build.samba.org


More information about the samba-cvs mailing list