1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-31 10:11:17 +00:00

ApkWorkload: Fixed replacing apps on a device

Previously if trying to downgrade an app using the `-r` option of
`adb install` the `INSTALL_FAILED_VERSION_DOWNGRADE` error would occur.
The app is now uninstalled first to prevent this.
This commit is contained in:
Sebastian Goscik 2016-09-26 16:47:06 +01:00
parent 8727fe514a
commit acb9dd61e7

View File

@ -368,7 +368,9 @@ class ApkWorkload(Workload):
def install_apk(self, context, replace=False):
success = False
output = self.device.install(self.apk_file, self.install_timeout, replace=replace)
if replace:
self.device.uninstall(self.package)
output = self.device.install(self.apk_file, self.install_timeout)
if 'Failure' in output:
if 'ALREADY_EXISTS' in output:
self.logger.warn('Using already installed APK (did not unistall properly?)')