From 3e26ced2601a2f875bc2f40278aced4c9b742c36 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Fri, 26 Dec 2014 13:08:24 -0500 Subject: [PATCH] Removing extraneous slash from URL; trying to ignore rc == 1 when 'make check' --- master.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/master.cfg b/master.cfg index aee7d42..c2d41a4 100644 --- a/master.cfg +++ b/master.cfg @@ -23,6 +23,7 @@ from buildbot.steps.source.git import Git from buildbot.steps.slave import RemoveDirectory from buildbot.changes.filter import ChangeFilter from buildbot.buildslave import BuildSlave +from buildbot.status.builder import SUCCESS, WARNINGS, FAILURE, EXCEPTION from gdbcommand import GdbCatSumfileCommand from gdbgitdb import SaveGDBResults @@ -136,7 +137,7 @@ send to the gdb-testers mailing list.""" # URL to find more info about what went wrong. text += "Log URL(s):\n" for ss in ss_list: - text += "\t<%s/results/%s/%s>\n" % (master_status.getBuildbotURL (), name, ss.revision) + text += "\t<%sresults/%s/%s>\n" % (master_status.getBuildbotURL (), name, ss.revision) # Who's to blame? text += "Author(s):\n" @@ -322,6 +323,8 @@ BuildBot halt on failure.""" # Needed because of dejagnu self.haltOnFailure = False self.flunkOnFailure = False + self.flunkOnWarnings = False + self.decodeRC = { 0 : SUCCESS, 1 : SUCCESS } #######################