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

manhattan: chaning run_timemout into a parameter and upping default to 10mins

This commit is contained in:
Sergei Trofimov 2015-06-29 17:55:43 +01:00
parent 3b4dc137d2
commit 19d6ce5486

View File

@ -76,8 +76,6 @@ class GlbCorp(ApkWorkload):
}
}
run_timeout = 3 * 60
parameters = [
Parameter('times', kind=int, default=1, constraint=lambda x: x > 0,
description=('Specifies the number of times the benchmark will be run in a "tight '
@ -87,6 +85,11 @@ class GlbCorp(ApkWorkload):
'be run. If not specfied, device\'s native resoution will used.')),
Parameter('test_id', default='gl_manhattan_off', allowed_values=valid_test_ids,
description='ID of the GFXBench test to be run.')
Parameter('run_timeout', kind=int, default=10 * 60,
description="""
Time out for workload execution. The workload will be killed if it hasn't completed
withint this period.
"""),
]
aliases = [