summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/android/pylib/base_test_sharder.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/build/android/pylib/base_test_sharder.py b/build/android/pylib/base_test_sharder.py
index 1c4559a..387038d 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]