1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-09-01 10:52:33 +01:00

Adding removal of the supporting APK

This commit is contained in:
scojac01
2025-08-11 13:35:48 +01:00
committed by Marc Bonnici
parent 836c743c50
commit d5d69e47b1

View File

@@ -252,3 +252,6 @@ class AntutuBDP(ApkWorkload):
super(AntutuBDP, self).teardown(context)
#Remove the test results file
self.target.execute('rm {}'.format(self.result_file))
#Remove the supporting APK
if self.target.is_installed(self.supporting_apk):
self.target.uninstall(self.supporting_apk)