Commit 8cd76171 authored by Michal Majewski's avatar Michal Majewski Committed by Commit Bot

[test] Ignore rename coverage data in execution time.

Bug: v8:6917
Change-Id: I88fdb12c39311531600c0715fff5abe5da051295
Reviewed-on: https://chromium-review.googlesource.com/824271
Commit-Queue: Michał Majewski <majeski@google.com>
Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#50079}
parent af192c89
......@@ -104,8 +104,9 @@ class TestJob(Job):
def run(self, context):
start_time = time.time()
out = self.cmd.execute()
duration = time.time() - start_time
self._rename_coverage_data(out, context.sancov_dir)
return (self.test_id, out, time.time() - start_time)
return (self.test_id, out, duration)
class Runner(object):
......
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