Index: build/android/run_instrumentation_tests.py |
diff --git a/build/android/run_instrumentation_tests.py b/build/android/run_instrumentation_tests.py |
index 6fd7c52ec657243b30593de90445f7e7c07ed0b3..94bdfaa8125480b5354f3e233dfb34db238502cd 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__': |