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

[workloads/jetnews] Update default fling speed from 5000 to 15000

This commit is contained in:
Luis Machado 2024-12-19 14:05:46 +00:00
parent 0a9c16b4a4
commit 871dfead35

View File

@ -57,9 +57,10 @@ class Jetnews(ApkUiautoJankTestWorkload): # pylint: disable=too-many-ancestors
constraint=lambda x: all(v in ['PortraitVerticalTest', 'PortraitHorizontalTest', 'LandscapeVerticalTest'] for v in x)), constraint=lambda x: all(v in ['PortraitVerticalTest', 'PortraitHorizontalTest', 'LandscapeVerticalTest'] for v in x)),
Parameter('flingspeed', kind=int, Parameter('flingspeed', kind=int,
description=""" description="""
Default fling speed for the tests. The default is 5000 and Default fling speed for the tests. The default is 15000 and
the minimum value is 1000. the minimum value is 1000. If the value is too small, it will
""", default=5000, constraint=lambda x: x >= 1000), take longer for the test to run.
""", default=15000, constraint=lambda x: x >= 1000),
Parameter('repeat', kind=int, Parameter('repeat', kind=int,
description=""" description="""
The number of times the tests should be repeated. The default The number of times the tests should be repeated. The default