Not including patch anymore...
This commit is contained in:
parent
9c20adfd7c
commit
9f1b98bbd4
1 changed files with 3 additions and 6 deletions
|
@ -139,7 +139,7 @@ import smtplib
|
||||||
import socket
|
import socket
|
||||||
from email.mime.text import MIMEText
|
from email.mime.text import MIMEText
|
||||||
|
|
||||||
def SendRootMessageGDBTesters (branch, change, patch):
|
def SendRootMessageGDBTesters (branch, cur_change):
|
||||||
global GDB_MAIL_TO, GDB_MAIL_FROM
|
global GDB_MAIL_TO, GDB_MAIL_FROM
|
||||||
rev = change.revision
|
rev = change.revision
|
||||||
f = "/tmp/gdb-buildbot-%s.lock" % rev
|
f = "/tmp/gdb-buildbot-%s.lock" % rev
|
||||||
|
@ -158,9 +158,7 @@ def SendRootMessageGDBTesters (branch, change, patch):
|
||||||
text += "Branch: %s\n" % branch
|
text += "Branch: %s\n" % branch
|
||||||
text += "Commit: %s\n\n" % rev
|
text += "Commit: %s\n\n" % rev
|
||||||
|
|
||||||
text += change.comments + "\n\n"
|
text += change.comments + "\n"
|
||||||
|
|
||||||
text += patch[1] + "\n"
|
|
||||||
|
|
||||||
mail = MIMEText (text)
|
mail = MIMEText (text)
|
||||||
mail['Subject'] = "Test results for commit %s on branch %s" % (rev, branch)
|
mail['Subject'] = "Test results for commit %s on branch %s" % (rev, branch)
|
||||||
|
@ -178,12 +176,11 @@ send to the gdb-testers mailing list."""
|
||||||
git_url = "http://gdb-build.sergiodj.net/cgit"
|
git_url = "http://gdb-build.sergiodj.net/cgit"
|
||||||
branch = build.getSourceStamps ()[0].branch
|
branch = build.getSourceStamps ()[0].branch
|
||||||
cur_change = build.getSourceStamps ()[0].changes[0]
|
cur_change = build.getSourceStamps ()[0].changes[0]
|
||||||
patch = build.getSourceStamps ()[0].patch
|
|
||||||
properties = build.getProperties ()
|
properties = build.getProperties ()
|
||||||
isrebuild = properties.getProperty ('isRebuild')
|
isrebuild = properties.getProperty ('isRebuild')
|
||||||
|
|
||||||
# Sending the root message to gdb-testers.
|
# Sending the root message to gdb-testers.
|
||||||
SendRootMessageGDBTesters (branch, cur_change, patch)
|
SendRootMessageGDBTesters (branch, cur_change)
|
||||||
|
|
||||||
# Subject
|
# Subject
|
||||||
subj = "Failures on %s, branch %s" % (name, branch)
|
subj = "Failures on %s, branch %s" % (name, branch)
|
||||||
|
|
Loading…
Reference in a new issue