Commit 9e45b7b8 authored by Jeff Yoon's avatar Jeff Yoon Committed by Commit Bot

[ios] update method call for timeout tests

wrong method call for aborted/timed-out tests in xcode runner
when preparing std json format.

Bug: 1067453
Change-Id: I8b1bb64adad7bfec760b63247c5b82dea9cfe2c4
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2134501
Auto-Submit: Jeff Yoon <jeffyoon@chromium.org>
Commit-Queue: Eugene But <eugenebut@chromium.org>
Reviewed-by: default avatarEugene But <eugenebut@chromium.org>
Cr-Commit-Position: refs/heads/master@{#756297}
parent 833dec2d
...@@ -417,7 +417,7 @@ class SimulatorParallelTestRunner(test_runner.SimulatorTestRunner): ...@@ -417,7 +417,7 @@ class SimulatorParallelTestRunner(test_runner.SimulatorTestRunner):
# 'aborted tests' in logs is an array of strings, each string defined # 'aborted tests' in logs is an array of strings, each string defined
# as "{TestCase}/{testMethod}" # as "{TestCase}/{testMethod}"
for test in self.logs['aborted tests']: for test in self.logs['aborted tests']:
output.mark_aborted(test) output.mark_timeout(test)
for test in attempt_results['passed']: for test in attempt_results['passed']:
output.mark_passed(test) output.mark_passed(test)
......
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