diff options
author | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-24 11:18:31 +0000 |
---|---|---|
committer | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-24 11:18:31 +0000 |
commit | 00fe778871b63a97f56502fe68f3cc74f88090e4 (patch) | |
tree | 8c80e638dcd5045af121a01f496b0f296d2a5ee9 /build/android/run_instrumentation_tests.py | |
parent | 189541bac766fa028cf2a3bf2089e0a3462524ed (diff) | |
download | chromium_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-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__': |