[Buildbot-commits] buildbot/buildbot/status tinderbox.py,1.2,1.3
Brian Warner
warner at users.sourceforge.net
Sun Nov 5 05:13:08 UTC 2006
Update of /cvsroot/buildbot/buildbot/buildbot/status
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3138/buildbot/status
Modified Files:
tinderbox.py
Log Message:
[project @ apply patch by Dave Liebreich to update the tinderbox status mailer: closes SF#1587352]
Original author: warner at lothar.com
Date: 2006-11-05 05:04:36
Index: tinderbox.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/status/tinderbox.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- tinderbox.py 29 Sep 2006 07:04:21 -0000 1.2
+++ tinderbox.py 5 Nov 2006 05:13:06 -0000 1.3
@@ -115,9 +115,12 @@
if results == "building":
res = "building"
text += res
- elif results == WARNINGS or results == SUCCESS:
+ elif results == SUCCESS:
res = "success"
text += res
+ elif results == WARNINGS:
+ res = "testfailed"
+ text += res
else:
res += "busted"
text += res
More information about the Commits
mailing list