Improving report of changes in the email
This commit is contained in:
parent
91743dcfc9
commit
0a1a2f9618
1 changed files with 6 additions and 4 deletions
10
master.cfg
10
master.cfg
|
@ -136,7 +136,8 @@ send to the gdb-testers mailing list."""
|
|||
text += "Commit(s) tested:\n"
|
||||
ss_list = build.getSourceStamps ()
|
||||
for ss in ss_list:
|
||||
text += "\t%s\n" % ss.revision
|
||||
for chg in ss.changes:
|
||||
text += "\t%s\n" % chg.revision
|
||||
|
||||
# URL to find more info about what went wrong.
|
||||
text += "Log URL(s):\n"
|
||||
|
@ -144,9 +145,10 @@ send to the gdb-testers mailing list."""
|
|||
text += "\t<%sresults/%s/%s>\n" % (master_status.getBuildbotURL (), name, ss.revision)
|
||||
|
||||
# Who's to blame?
|
||||
text += "Author(s):\n"
|
||||
for author in build.getResponsibleUsers():
|
||||
text += "\t%s\n" % author
|
||||
text += "Author(s) (in the same order as the commits):\n"
|
||||
for ss in ss_list:
|
||||
for chg in ss.changes:
|
||||
text += "\t%s\n" % chg.who
|
||||
|
||||
# Including the 'regressions' log. This is the 'diff' of what
|
||||
# went wrong.
|
||||
|
|
Loading…
Reference in a new issue