diff options
author | Jeff Lane <jeffrey.lane@canonical.com> | 2022-03-04 09:40:18 +0100 |
---|---|---|
committer | Jeff Lane <jeffrey.lane@canonical.com> | 2022-03-04 09:40:18 +0100 |
commit | 0399db24cc1b8121dad7d99fc5a1c02bbca19bbe (patch) | |
tree | 0682f0c33b6eb285c18533b498293458f9e00e49 | |
parent | d0f6ab7f574cbaff3f843934b015f883cdd93ae6 (diff) |
CHANGE cpufrq_test.py: Lowered min freq failure threshold slightly to fine tune failures lp: #1963650
-rwxr-xr-x | bin/cpufreq_test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/cpufreq_test.py b/bin/cpufreq_test.py index 73fa651..7d48021 100755 --- a/bin/cpufreq_test.py +++ b/bin/cpufreq_test.py @@ -61,8 +61,9 @@ class CpuFreqTest: # max, min percentage of avg freq allowed to pass # values relative to target freq # ex: max = 110, min = 90 is 20% passing tolerance + # LP 1963650: lowered min to 85 to fine tune failures max_freq_pct = 150 - min_freq_pct = 90 + min_freq_pct = 85 def __init__(self): def append_max_min(): |