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

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

Issue 1163523008: [test] Fix missing heartbeats in test runner. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 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 | « no previous file | 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 19d39f7e6193e4a66857564200a1cb019c3f1d7b..a9519e926d7552418e56aeaf2a7fb764e86bdfbb 100644
--- a/tools/testrunner/local/progress.py
+++ b/tools/testrunner/local/progress.py
@@ -292,6 +292,8 @@ class JUnitTestProgressIndicator(ProgressIndicator):
test.duration,
fail_text)
+ def Heartbeat(self):
+ self.progress_indicator.Heartbeat()
class JsonTestProgressIndicator(ProgressIndicator):
@@ -364,6 +366,9 @@ class JsonTestProgressIndicator(ProgressIndicator):
"duration": test.duration,
})
+ def Heartbeat(self):
+ self.progress_indicator.Heartbeat()
+
PROGRESS_INDICATORS = {
'verbose': VerboseProgressIndicator,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698