Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(286)

Unified Diff: third_party/buildbot_7_12/buildbot/steps/maxq.py

Issue 12207158: Bye bye buildbot 0.7.12. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/buildbot_7_12/buildbot/steps/maxq.py
diff --git a/third_party/buildbot_7_12/buildbot/steps/maxq.py b/third_party/buildbot_7_12/buildbot/steps/maxq.py
deleted file mode 100644
index 23538a5489b18f17ae703967e4654ef9210e45b5..0000000000000000000000000000000000000000
--- a/third_party/buildbot_7_12/buildbot/steps/maxq.py
+++ /dev/null
@@ -1,44 +0,0 @@
-from buildbot.steps.shell import ShellCommand
-from buildbot.status.builder import Event, SUCCESS, FAILURE
-
-class MaxQ(ShellCommand):
- flunkOnFailure = True
- name = "maxq"
-
- def __init__(self, testdir=None, **kwargs):
- if not testdir:
- raise TypeError("please pass testdir")
- kwargs['command'] = 'run_maxq.py %s' % (testdir,)
- ShellCommand.__init__(self, **kwargs)
- self.addFactoryArguments(testdir=testdir)
-
- def startStatus(self):
- evt = Event("yellow", ['running', 'maxq', 'tests'],
- files={'log': self.log})
- self.setCurrentActivity(evt)
-
-
- def finished(self, rc):
- self.failures = 0
- if rc:
- self.failures = 1
- output = self.log.getAll()
- self.failures += output.count('\nTEST FAILURE:')
-
- result = (SUCCESS, ['maxq'])
-
- if self.failures:
- result = (FAILURE, [str(self.failures), 'maxq', 'failures'])
-
- return self.stepComplete(result)
-
- def finishStatus(self, result):
- if self.failures:
- text = ["maxq", "failed"]
- else:
- text = ['maxq', 'tests']
- self.updateCurrentActivity(text=text)
- self.finishStatusSummary()
- self.finishCurrentActivity()
-
-
« no previous file with comments | « third_party/buildbot_7_12/buildbot/steps/master.py ('k') | third_party/buildbot_7_12/buildbot/steps/package/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698