mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-09-02 03:12:34 +01: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:
@@ -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)
|
||||
|
Reference in New Issue
Block a user