1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

geekbench: upping run time out.

Run timeout was been hit on very slow systems.
This commit is contained in:
Sergei Trofimov 2015-05-07 11:55:37 +01:00
parent 67ad4a63e4
commit 57972a56af

View File

@ -92,7 +92,7 @@ class Geekbench(AndroidUiAutoBenchmark):
super(Geekbench, self).__init__(device, **kwargs)
self.uiauto_params['version'] = self.version
self.uiauto_params['times'] = self.times
self.run_timeout = 3 * 60 * self.times
self.run_timeout = 5 * 60 * self.times
def init_resources(self, context):
self.apk_file = context.resolver.get(wlauto.common.android.resources.ApkFile(self), version=self.version)