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() |
- |
- |