Commit 5c9a5207 authored by Haiyang Pan's avatar Haiyang Pan Committed by Commit Bot

Fix the index inconsistence between "STARTING TRY" and "FINISHED TRY"

Bug: 1141527
Change-Id: Id1df958b7c413adc2b04a401c2723bece05e9c72
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2492661Reviewed-by: default avatarAndrew Grieve <agrieve@chromium.org>
Commit-Queue: Haiyang Pan <hypan@google.com>
Cr-Commit-Position: refs/heads/master@{#821334}
parent 97941685
...@@ -193,7 +193,7 @@ class LocalDeviceTestRun(test_run.TestRun): ...@@ -193,7 +193,7 @@ class LocalDeviceTestRun(test_run.TestRun):
self._env.IncrementCurrentTry() self._env.IncrementCurrentTry()
tests = self._GetTestsToRetry(tests, try_results) tests = self._GetTestsToRetry(tests, try_results)
logging.info('FINISHED TRY #%d/%d', tries, self._env.max_tries) logging.info('FINISHED TRY #%d/%d', tries + 1, self._env.max_tries)
if tests: if tests:
logging.info('%d failed tests remain.', len(tests)) logging.info('%d failed tests remain.', len(tests))
else: else:
......
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