Chromium Code Reviews| Index: build/android/test_runner.py |
| diff --git a/build/android/test_runner.py b/build/android/test_runner.py |
| index 368ac06aff109931487a0f4b1497f16e292a2f4c..87f4cecabd12bc3010bae8e26f3ca1ef22c1118d 100755 |
| --- a/build/android/test_runner.py |
| +++ b/build/android/test_runner.py |
| @@ -768,7 +768,13 @@ def _RunUIAutomatorTests(args, devices): |
| def _RunJUnitTests(args): |
| """Subcommand of RunTestsCommand which runs junit tests.""" |
| runner_factory, tests = junit_setup.Setup(args) |
| - _, exit_code = junit_dispatcher.RunTests(tests, runner_factory) |
| + results, exit_code = junit_dispatcher.RunTests(tests, runner_factory) |
|
kzaikin
2015/03/19 09:12:11
In fact your dispatcher returns bool as second tup
mikecase (-- gone --)
2015/03/23 20:38:44
Good catch. Fixed
|
| + |
| + report_results.LogFull( |
| + results=results, |
| + test_type='JUnit', |
| + test_package=args.test_suite) |
| + |
| return exit_code |