t/run-fio-tests.py: Increase IOPS tolerance further
authorBart Van Assche <bvanassche@acm.org>
Sat, 4 Jul 2020 04:19:23 +0000 (21:19 -0700)
committerBart Van Assche <bvanassche@acm.org>
Sat, 4 Jul 2020 04:20:30 +0000 (21:20 -0700)
From an Appveyor build:

DEBUG:root:Test 12: iops1: 984.676882

Signed-off-by: Bart Van Assche <bvanassche@acm.org>
t/run-fio-tests.py

index ae2cb0968ff52609ad6801120bc2142e201ab38e..622389502d1fe04eea58202fab2ccec06579d3d0 100755 (executable)
@@ -438,7 +438,7 @@ class FioJobTest_iops_rate(FioJobTest):
         logging.debug("Test %d: iops1: %f", self.testnum, iops1)
         logging.debug("Test %d: ratio: %f", self.testnum, ratio)
 
-        if iops1 < 995 or iops1 > 1005:
+        if iops1 < 950 or iops1 > 1050:
             self.failure_reason = "{0} iops value mismatch,".format(self.failure_reason)
             self.passed = False