[Buildbot-commits] buildbot/buildbot/status/web waterfall.py, 1.34, 1.35

Brian Warner warner at users.sourceforge.net
Thu Jul 24 18:52:38 UTC 2008


Update of /cvsroot/buildbot/buildbot/buildbot/status/web
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv18658/buildbot/status/web

Modified Files:
	waterfall.py 
Log Message:
[project @ merge-fix.patch]
Fix to use the correct name for the failed-tests statistic.

Original author: dustin at v.igoro.us
Date: 2008-07-24 18:48:28+00:00

Index: waterfall.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/status/web/waterfall.py,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- waterfall.py	24 Jul 2008 18:52:23 -0000	1.34
+++ waterfall.py	24 Jul 2008 18:52:36 -0000	1.35
@@ -111,7 +111,7 @@
         number = b.getNumber()
         url = path_to_build(req, b)
         text = b.getText()
-        tests_failed = b.getSummaryStatistic('failed', operator.add, 0)
+        tests_failed = b.getSummaryStatistic('tests-failed', operator.add, 0)
         if tests_failed: text.extend(["Failed tests: %d" % tests_failed])
         # TODO: maybe add logs?
         # TODO: add link to the per-build page at 'url'





More information about the Commits mailing list