summaryrefslogtreecommitdiffstats
path: root/build/android/run_instrumentation_tests.py
diff options
context:
space:
mode:
authorbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-24 11:18:31 +0000
committerbulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-10-24 11:18:31 +0000
commit00fe778871b63a97f56502fe68f3cc74f88090e4 (patch)
tree8c80e638dcd5045af121a01f496b0f296d2a5ee9 /build/android/run_instrumentation_tests.py
parent189541bac766fa028cf2a3bf2089e0a3462524ed (diff)
downloadchromium_src-00fe778871b63a97f56502fe68f3cc74f88090e4.zip
chromium_src-00fe778871b63a97f56502fe68f3cc74f88090e4.tar.gz
chromium_src-00fe778871b63a97f56502fe68f3cc74f88090e4.tar.bz2
Android: upstream latest changes for build/android.
- add instrumentation test options for printing buildbot failures; - allow test_apk option to point to a fully qualified path; BUG=136980 TEST= Review URL: https://chromiumcodereview.appspot.com/11231076 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163810 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/android/run_instrumentation_tests.py')
-rwxr-xr-xbuild/android/run_instrumentation_tests.py4
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__':