Chromium Code Reviews| Index: build/android/pylib/base/test_dispatcher.py |
| diff --git a/build/android/pylib/base/test_dispatcher.py b/build/android/pylib/base/test_dispatcher.py |
| index 929c408ec50245c749cddf45800e68fae69344db..055aa6c32ce98044f13a64fbf38c8013fca5868a 100644 |
| --- a/build/android/pylib/base/test_dispatcher.py |
| +++ b/build/android/pylib/base/test_dispatcher.py |
| @@ -116,7 +116,8 @@ def _RunTestsFromQueue(runner, collection, out_results, watcher, |
| pass_results = base_test_result.TestRunResults() |
| pass_results.AddResults(result.GetPass()) |
| out_results.append(pass_results) |
| - logging.warning('Will retry test, try #%s.' % test.tries) |
| + logging.warning('Will retry test %s, try #%s.' % (repr(test.test), |
|
jbudorick
2015/02/28 02:26:52
This should be retry, not test.test. (test.test wo
boliu
2015/02/28 02:37:56
Done.
|
| + test.tries)) |
| collection.add(_Test(test=retry, tries=test.tries)) |
| else: |
| # All tests passed or retry limit reached. Either way, record results. |