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

workloads: Update to better utilize cleanup_assets and uninstall

Update the workload classes to attempt and standardize the use of the
`cleanup_assets` parameter and the newly added `uninstall` parameter
This commit is contained in:
Marc Bonnici
2019-06-20 11:43:33 +01:00
parent f5d1a9e94a
commit 1108c5701e
12 changed files with 33 additions and 20 deletions

View File

@@ -286,7 +286,8 @@ class Meabo(Workload):
int(match.group('duration')), units="ns")
def finalize(self, context):
self._uninstall_executable()
if self.uninstall:
self._uninstall_executable()
def _build_command(self):
self.command = self.target_exe