summaryrefslogtreecommitdiffstats
path: root/build/android/run_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'build/android/run_tests.py')
-rwxr-xr-xbuild/android/run_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build/android/run_tests.py b/build/android/run_tests.py
index 5c80bf3..14d54d1 100755
--- a/build/android/run_tests.py
+++ b/build/android/run_tests.py
@@ -196,6 +196,7 @@ class TestSharder(BaseTestSharder):
test_type='Unit test',
test_package=test_runners[0].test_package.test_suite_basename,
build_type=self.build_type,
+ all_tests=self.all_tests,
flakiness_server=self.flakiness_server)
test_results.PrintAnnotation()
@@ -264,7 +265,7 @@ def _RunATestSuite(options):
for buildbot_emulator in buildbot_emulators:
buildbot_emulator.Shutdown()
- return len(test_results.GetAllBroken())
+ return len(test_results.failed)
def Dispatch(options):