summaryrefslogtreecommitdiff
path: root/bin
diff options
authorAdrian Lane <adrian.lane@canonical.com>2020-12-17 15:50:30 -0800
committerAdrian Lane <adrian.lane@canonical.com>2020-12-17 15:50:30 -0800
commit8af5a03b547254b7f36f0f36e1731a458dcb9e7d (patch)
treec0c6233eadae4e0b24b844d1a17fbb69b2daad10 /bin
parent3603cb74218e71fdb8bc4d8868592e7e75b0dd77 (diff)
Changed upper bound to 150% passing tolerance (per discussion w/ JeffL).
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cpufreq_test.py2
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):