mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-31 02:01:16 +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:
parent
75c0e40bb0
commit
75f3080c9b
@ -116,7 +116,7 @@ class Lmbench(Workload):
|
||||
context.add_artifact('lmbench-result', "lmbench.output", kind='raw')
|
||||
|
||||
def teardown(self, context):
|
||||
self.target.uninstall_executable(self.test)
|
||||
self.target.uninstall(self.test)
|
||||
|
||||
#
|
||||
# Test setup routines
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user