mirror of
https://github.com/ARM-software/workload-automation.git
synced 2025-01-19 12:24:32 +00:00
Framework/Workload: Fix super propagation.
Previously super calls were not being propagated correctly so either call the relevant super or remove the empty methods.
This commit is contained in:
parent
74347b9e67
commit
ac5741136d
@ -243,18 +243,10 @@ class ApkWorkload(Workload):
|
|||||||
self.apk.setup(context)
|
self.apk.setup(context)
|
||||||
time.sleep(self.loading_time)
|
time.sleep(self.loading_time)
|
||||||
|
|
||||||
def run(self, context):
|
|
||||||
pass
|
|
||||||
|
|
||||||
def extract_results(self, context):
|
|
||||||
pass
|
|
||||||
|
|
||||||
def teardown(self, context):
|
def teardown(self, context):
|
||||||
|
super(ApkWorkload, self).teardown(context)
|
||||||
self.apk.teardown()
|
self.apk.teardown()
|
||||||
|
|
||||||
@once_per_instance
|
|
||||||
def finalize(self, context):
|
|
||||||
pass
|
|
||||||
|
|
||||||
def deploy_assets(self, context):
|
def deploy_assets(self, context):
|
||||||
super(ApkWorkload, self).deploy_assets(context)
|
super(ApkWorkload, self).deploy_assets(context)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user