Including extra newlines
This commit is contained in:
parent
2fc71f839d
commit
8cedac1a37
1 changed files with 4 additions and 4 deletions
|
@ -137,25 +137,25 @@ send to the gdb-testers mailing list."""
|
||||||
text += "\t%s\n" % build.getSlavename ()
|
text += "\t%s\n" % build.getSlavename ()
|
||||||
|
|
||||||
# Including the link for the full build
|
# Including the link for the full build
|
||||||
text += "Full Build URL:\n"
|
text += "\nFull Build URL:\n"
|
||||||
text += "\t<%s>\n" % master_status.getURLForThing (build)
|
text += "\t<%s>\n" % master_status.getURLForThing (build)
|
||||||
|
|
||||||
# Commits that were tested. Usually we should be dealing with
|
# Commits that were tested. Usually we should be dealing with
|
||||||
# only one commit
|
# only one commit
|
||||||
text += "Commit(s) tested:\n"
|
text += "\nCommit(s) tested:\n"
|
||||||
ss_list = build.getSourceStamps ()
|
ss_list = build.getSourceStamps ()
|
||||||
for ss in ss_list:
|
for ss in ss_list:
|
||||||
for chg in ss.changes:
|
for chg in ss.changes:
|
||||||
text += "\t%s\n" % chg.revision
|
text += "\t%s\n" % chg.revision
|
||||||
|
|
||||||
# Who's to blame?
|
# Who's to blame?
|
||||||
text += "Author(s) (in the same order as the commits):\n"
|
text += "\nAuthor(s) (in the same order as the commits):\n"
|
||||||
for ss in ss_list:
|
for ss in ss_list:
|
||||||
for chg in ss.changes:
|
for chg in ss.changes:
|
||||||
text += "\t%s\n" % chg.who
|
text += "\t%s\n" % chg.who
|
||||||
|
|
||||||
# URL to find more info about what went wrong.
|
# URL to find more info about what went wrong.
|
||||||
text += "Log URL(s):\n"
|
text += "\nTestsuite log (gdb.sum and gdb.log) URL(s):\n"
|
||||||
for ss in ss_list:
|
for ss in ss_list:
|
||||||
commit_id = get_builder_commit_id (name, ss.revision)
|
commit_id = get_builder_commit_id (name, ss.revision)
|
||||||
if commit_id:
|
if commit_id:
|
||||||
|
|
Loading…
Reference in a new issue