Removing extraneous slash from URL; trying to ignore rc == 1 when 'make check'
This commit is contained in:
parent
dedf0d3762
commit
3e26ced260
1 changed files with 4 additions and 1 deletions
|
@ -23,6 +23,7 @@ from buildbot.steps.source.git import Git
|
||||||
from buildbot.steps.slave import RemoveDirectory
|
from buildbot.steps.slave import RemoveDirectory
|
||||||
from buildbot.changes.filter import ChangeFilter
|
from buildbot.changes.filter import ChangeFilter
|
||||||
from buildbot.buildslave import BuildSlave
|
from buildbot.buildslave import BuildSlave
|
||||||
|
from buildbot.status.builder import SUCCESS, WARNINGS, FAILURE, EXCEPTION
|
||||||
from gdbcommand import GdbCatSumfileCommand
|
from gdbcommand import GdbCatSumfileCommand
|
||||||
from gdbgitdb import SaveGDBResults
|
from gdbgitdb import SaveGDBResults
|
||||||
|
|
||||||
|
@ -136,7 +137,7 @@ send to the gdb-testers mailing list."""
|
||||||
# URL to find more info about what went wrong.
|
# URL to find more info about what went wrong.
|
||||||
text += "Log URL(s):\n"
|
text += "Log URL(s):\n"
|
||||||
for ss in ss_list:
|
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?
|
# Who's to blame?
|
||||||
text += "Author(s):\n"
|
text += "Author(s):\n"
|
||||||
|
@ -322,6 +323,8 @@ BuildBot halt on failure."""
|
||||||
# Needed because of dejagnu
|
# Needed because of dejagnu
|
||||||
self.haltOnFailure = False
|
self.haltOnFailure = False
|
||||||
self.flunkOnFailure = False
|
self.flunkOnFailure = False
|
||||||
|
self.flunkOnWarnings = False
|
||||||
|
self.decodeRC = { 0 : SUCCESS, 1 : SUCCESS }
|
||||||
|
|
||||||
|
|
||||||
#######################
|
#######################
|
||||||
|
|
Loading…
Reference in a new issue