1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-10-30 06:34:13 +00:00

workloads: Use uninstall method instead of uninstall_executable

For workloads that support Linux targets do not use
`uninstall_executable` as this is not available, instead use `uninstall` as
other targets should be able to determine the appropriate uninstallation
method.
This commit is contained in:
Marc Bonnici
2018-10-04 17:03:57 +01:00
committed by setrofim
parent 75c0e40bb0
commit 75f3080c9b
2 changed files with 2 additions and 2 deletions

View File

@@ -313,4 +313,4 @@ class Meabo(Workload):
@once
def _uninstall_executable(self):
self.target.uninstall_executable(self.target_exe)
self.target.uninstall(self.target_exe)