Improving report of changes in the email

This commit is contained in:
Sergio Durigan Junior 2015-01-09 18:58:38 -05:00
parent 91743dcfc9
commit 0a1a2f9618

View file

@ -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.