Skip to content

Commit

Permalink
Add status=exception support to TinderboxMailNotifier
Browse files Browse the repository at this point in the history
  • Loading branch information
bhearsum committed Aug 13, 2010
1 parent 14913ed commit df68fd3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion master/buildbot/status/tinderbox.py
Expand Up @@ -7,7 +7,7 @@

from buildbot import interfaces
from buildbot.status import mail
from buildbot.status.builder import SUCCESS, WARNINGS
from buildbot.status.builder import SUCCESS, WARNINGS, EXCEPTION
from buildbot.steps.shell import WithProperties

import gzip, bz2, base64, re, cStringIO
Expand Down Expand Up @@ -171,6 +171,9 @@ def buildMessage(self, name, build, results):
elif results == WARNINGS:
res = "testfailed"
text += res
elif results == EXCEPTION:
res = "exception"
text += res
else:
res += "busted"
text += res
Expand Down

0 comments on commit df68fd3

Please sign in to comment.