Adjust message formatters
This commit is contained in:
parent
3c736356e5
commit
c0ab924f25
1 changed files with 23 additions and 17 deletions
40
master.cfg
40
master.cfg
|
@ -254,7 +254,7 @@ subsequent commits are made after X, by different people."""
|
|||
def MessageGDBTesters (mode, name, build, results, master_status):
|
||||
"""This function is responsible for composing the message that will be
|
||||
send to the gdb-testers mailing list."""
|
||||
git_url = "http://gdb-build.sergiodj.net/cgit"
|
||||
res_url = "http://gdb-build.sergiodj.net/cgit"
|
||||
branch = build.getSourceStamps ()[0].branch
|
||||
cur_change = build.getSourceStamps ()[0].changes[0]
|
||||
properties = build.getProperties ()
|
||||
|
@ -297,13 +297,16 @@ send to the gdb-testers mailing list."""
|
|||
|
||||
# URL to find more info about what went wrong.
|
||||
text += "\nTestsuite log (gdb.sum and gdb.log) URL(s):\n"
|
||||
for ss in ss_list:
|
||||
commit_id = get_builder_commit_id (name, ss.revision, ss.branch)
|
||||
if commit_id:
|
||||
text += "\t<%s/%s/.git/tree/?h=%s&id=%s>\n" % (git_url, name, quote (ss.branch),
|
||||
commit_id)
|
||||
else:
|
||||
text += "\t<Error fetching commit ID for %s>\n" % ss.revision
|
||||
text += "\t<%s/%s/%s/%s/>\n" % (res_url, name, sourcestamp.revision[:2],
|
||||
sourcestamp.revision)
|
||||
|
||||
# for ss in ss_list:
|
||||
# commit_id = get_builder_commit_id (name, ss.revision, ss.branch)
|
||||
# if commit_id:
|
||||
# text += "\t<%s/%s/.git/tree/?h=%s&id=%s>\n" % (git_url, name, quote (ss.branch),
|
||||
# commit_id)
|
||||
# else:
|
||||
# text += "\t<Error fetching commit ID for %s>\n" % ss.revision
|
||||
|
||||
# Including the 'regressions' log. This is the 'diff' of what
|
||||
# went wrong.
|
||||
|
@ -411,7 +414,7 @@ send to the gdb-testers mailing list."""
|
|||
def MessageGDBTestersTryBuild (mode, name, build, results, master_status):
|
||||
"""This function is responsible for composing the message that will be
|
||||
send to the gdb-testers mailing list."""
|
||||
git_url = "http://gdb-build.sergiodj.net/cgit"
|
||||
res_url = "http://gdb-build.sergiodj.net/results"
|
||||
branch = build.getSourceStamps ()[0].branch
|
||||
sourcestamp = build.getSourceStamps ()[0]
|
||||
cur_change = sourcestamp.patch[1]
|
||||
|
@ -444,14 +447,17 @@ send to the gdb-testers mailing list."""
|
|||
|
||||
# URL to find more info about what went wrong.
|
||||
text += "\nTestsuite log (gdb.sum and gdb.log) URL(s):\n"
|
||||
commit_id = get_builder_commit_id (name, sourcestamp.revision,
|
||||
sourcestamp.branch)
|
||||
if commit_id:
|
||||
text += "\t<%s/%s/.git/tree/?h=%s&id=%s>\n" % (git_url, name,
|
||||
quote (sourcestamp.branch),
|
||||
commit_id)
|
||||
else:
|
||||
text += "\t<Error fetching commit ID for %s>\n" % sourcestamp.revision
|
||||
text += "\t<%s/%s/%s/%s/>\n" % (res_url, name, sourcestamp.revision[:2],
|
||||
sourcestamp.revision)
|
||||
|
||||
# commit_id = get_builder_commit_id (name, sourcestamp.revision,
|
||||
# sourcestamp.branch)
|
||||
# if commit_id:
|
||||
# text += "\t<%s/%s/.git/tree/?h=%s&id=%s>\n" % (git_url, name,
|
||||
# quote (sourcestamp.branch),
|
||||
# commit_id)
|
||||
# else:
|
||||
# text += "\t<Error fetching commit ID for %s>\n" % sourcestamp.revision
|
||||
|
||||
# found_regressions will be True if the 'regressions' log is not
|
||||
# empty.
|
||||
|
|
Loading…
Reference in a new issue