diff options
Diffstat (limited to 'build/android/run_instrumentation_tests.py')
-rwxr-xr-x | build/android/run_instrumentation_tests.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build/android/run_instrumentation_tests.py b/build/android/run_instrumentation_tests.py index 6fd7c52..94bdfaa 100755 --- a/build/android/run_instrumentation_tests.py +++ b/build/android/run_instrumentation_tests.py @@ -94,7 +94,9 @@ def main(argv): buildbot_report.PrintNamedStep( 'Instrumentation tests: %s - %s' % (', '.join(options.annotation), options.test_apk)) - return DispatchInstrumentationTests(options) + ret = DispatchInstrumentationTests(options) + buildbot_report.PrintStepResultIfNeeded(options, ret) + return ret if __name__ == '__main__': |