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

Unified Diff: tools/testrunner/local/progress.py

Issue 1064043002: Make test runner more chatty to avoid it getting killed by buildbot. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: ... Created 5 years, 8 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
« no previous file with comments | « tools/testrunner/local/pool_unittest.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testrunner/local/progress.py
diff --git a/tools/testrunner/local/progress.py b/tools/testrunner/local/progress.py
index 2616958c47887f4fa427627d57fde41ad36cb15b..f47fa3af84848d08cdf4c31be49cae3f2ac22d5d 100644
--- a/tools/testrunner/local/progress.py
+++ b/tools/testrunner/local/progress.py
@@ -66,6 +66,9 @@ class ProgressIndicator(object):
def HasRun(self, test, has_unexpected_output):
pass
+ def Heartbeat(self):
+ pass
+
def PrintFailureHeader(self, test):
if test.suite.IsNegativeTest(test):
negative_marker = '[negative] '
@@ -128,6 +131,10 @@ class VerboseProgressIndicator(SimpleProgressIndicator):
outcome = 'pass'
print 'Done running %s: %s' % (test.GetLabel(), outcome)
+ def Heartbeat(self):
+ print 'Still working...'
+ sys.stdout.flush()
+
class DotsProgressIndicator(SimpleProgressIndicator):
« no previous file with comments | « tools/testrunner/local/pool_unittest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698