Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1362)

Unified Diff: build/android/pylib/local/device/local_device_gtest_run.py

Issue 1420003002: Android gtest runner: Use device.Install(reinstall=True) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/local/device/local_device_gtest_run.py
diff --git a/build/android/pylib/local/device/local_device_gtest_run.py b/build/android/pylib/local/device/local_device_gtest_run.py
index a980d4d4b20dc22c89f891a209162be1e3b780c7..3aae285eee4172c634781f148fc7eb7d97a799f8 100644
--- a/build/android/pylib/local/device/local_device_gtest_run.py
+++ b/build/android/pylib/local/device/local_device_gtest_run.py
@@ -107,7 +107,8 @@ class _ApkDelegate(object):
def Install(self, device, incremental=False):
if not incremental:
- device.Install(self._apk_helper, permissions=self._permissions)
+ device.Install(self._apk_helper, reinstall=True,
jbudorick 2015/10/22 15:14:15 Hrm, I was worried about how the bots would handle
+ permissions=self._permissions)
return
installer_script = os.path.join(constants.GetOutDirectory(), 'bin',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698