The branch, master has been updated via e491266 ignore other status in case of timeout/disk full, etc. from 2f73f52 Include host link.
http://gitweb.samba.org/?p=build-farm.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit e491266dca92ab4d8da32039b7579dc37b714478 Author: Jelmer Vernooij <jel...@samba.org> Date: Mon Nov 22 01:40:47 2010 +0100 ignore other status in case of timeout/disk full, etc. ----------------------------------------------------------------------- Summary of changes: buildfarm/web/__init__.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) Changeset truncated at 500 lines: diff --git a/buildfarm/web/__init__.py b/buildfarm/web/__init__.py index 5b2827f..9e2ddf9 100755 --- a/buildfarm/web/__init__.py +++ b/buildfarm/web/__init__.py @@ -100,11 +100,11 @@ def html_build_status(status): ostatus = "" if "panic" in status.other_failures: - ostatus += "/"+span("status panic", "PANIC") + return "/"+span("status panic", "PANIC") if "disk full" in status.other_failures: - ostatus += "/"+span("status failed", "disk full") + return "/"+span("status failed", "disk full") if "timeout" in status.other_failures: - ostatus += "/"+span("status failed", "timeout") + return "/"+span("status failed", "timeout") if "inconsistent test result" in status.other_failures: ostatus += "/"+span("status failed", "unexpected return code") bstatus = "/".join([span_status(s) for s in status.stages]) -- build.samba.org