1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 02:41:11 +01:00

Merge pull request #409 from marcbonnici/uiauto_timeout

Workload: Increased default uiautomator workload timeout
This commit is contained in:
setrofim 2017-06-15 11:27:32 +01:00 committed by GitHub
commit b95ea60213

View File

@ -74,7 +74,7 @@ class UiAutomatorWorkload(Workload):
uiauto_method = 'android.support.test.runner.AndroidJUnitRunner'
# Can be overidden by subclasses to adjust to run time of specific
# benchmarks.
run_timeout = 4 * 60 # seconds
run_timeout = 10 * 60 # seconds
def __init__(self, device, _call_super=True, **kwargs): # pylint: disable=W0613
if _call_super: