Improving check for xfail directory
This commit is contained in:
parent
085e1e0ac9
commit
7eab0bb490
1 changed files with 13 additions and 12 deletions
25
master.cfg
25
master.cfg
|
@ -355,18 +355,19 @@ send to the gdb-testers mailing list."""
|
|||
# Including the 'xfail' log. It is important to say which tests
|
||||
# we are ignoring.
|
||||
if found_regressions:
|
||||
xfail_commit = os.path.join (gdb_web_base, name, 'xfails', branch, '.last-commit')
|
||||
text += "\n\n*** Complete list of XFAILs for this builder ***\n\n"
|
||||
if os.path.exists (xfail_commit):
|
||||
with open (xfail_commit, 'r') as f:
|
||||
com = f.read ().strip ('\n')
|
||||
text += "To obtain the list of XFAIL tests for this builder, go to:\n\n"
|
||||
text += "\t<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/%s/xfails/%s/xfail;hb=%s>\n\n" % (name, branch, com)
|
||||
text += "You can also see a pretty-printed version of the list, with more information\n"
|
||||
text += "about each XFAIL, by going to:\n\n"
|
||||
text += "\t<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/%s/xfails/%s/xfail.table;hb=%s>\n" % (name, branch, com)
|
||||
else:
|
||||
text += "FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST. PLEASE CONTACT THE BUILDBOT ADMIN.\n"
|
||||
if os.path.exists (os.path.join (gdb_web_base, name)):
|
||||
xfail_commit = os.path.join (gdb_web_base, name, 'xfails', branch, '.last-commit')
|
||||
text += "\n\n*** Complete list of XFAILs for this builder ***\n\n"
|
||||
if os.path.exists (xfail_commit):
|
||||
with open (xfail_commit, 'r') as f:
|
||||
com = f.read ().strip ('\n')
|
||||
text += "To obtain the list of XFAIL tests for this builder, go to:\n\n"
|
||||
text += "\t<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/%s/xfails/%s/xfail;hb=%s>\n\n" % (name, branch, com)
|
||||
text += "You can also see a pretty-printed version of the list, with more information\n"
|
||||
text += "about each XFAIL, by going to:\n\n"
|
||||
text += "\t<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/%s/xfails/%s/xfail.table;hb=%s>\n" % (name, branch, com)
|
||||
else:
|
||||
text += "FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST. PLEASE CONTACT THE BUILDBOT ADMIN.\n"
|
||||
text += "\n"
|
||||
|
||||
if report_build_breakage:
|
||||
|
|
Loading…
Reference in a new issue