Commit e7281251 authored by machenbach's avatar machenbach Committed by Commit bot

[test] Fix missing heartbeats in test runner.

TBR=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/1163523008

Cr-Commit-Position: refs/heads/master@{#28808}
parent 7a7a0735
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment