diff options
author | Adrian Lane <adrian.lane@canonical.com> | 2020-12-17 15:50:30 -0800 |
---|---|---|
committer | Adrian Lane <adrian.lane@canonical.com> | 2020-12-17 15:50:30 -0800 |
commit | 8af5a03b547254b7f36f0f36e1731a458dcb9e7d (patch) | |
tree | c0c6233eadae4e0b24b844d1a17fbb69b2daad10 /bin | |
parent | 3603cb74218e71fdb8bc4d8868592e7e75b0dd77 (diff) |
Changed upper bound to 150% passing tolerance (per discussion w/ JeffL).
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/cpufreq_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/cpufreq_test.py b/bin/cpufreq_test.py index c6d33f8..81ee276 100755 --- a/bin/cpufreq_test.py +++ b/bin/cpufreq_test.py @@ -59,7 +59,7 @@ 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 - max_freq_pct = 110 + max_freq_pct = 150 min_freq_pct = 90 def __init__(self): |