Chromium Code Reviews| Index: build/android/pylib/base_test_sharder.py |
| diff --git a/build/android/pylib/base_test_sharder.py b/build/android/pylib/base_test_sharder.py |
| index 1c4559ad4582ddb2d757dd3fc5e5fa4bd27dcdd3..387038d070bd478b2ca4be287b7a96265ace8e05 100644 |
| --- a/build/android/pylib/base_test_sharder.py |
| +++ b/build/android/pylib/base_test_sharder.py |
| @@ -136,6 +136,9 @@ class BaseTestSharder(object): |
| break |
| else: |
| final_results.ok += test_results.ok |
| + # Timed out tests are not reported in GetAllBroken(). |
| + if test_results.timed_out: |
| + final_results.timed_out = True |
| self.tests = [] |
| for t in test_results.GetAllBroken(): |
| self.tests += [t.name] |
|
frankf
2013/01/09 22:11:28
@Craig: Lines 133-143 are completely breaking the
|