aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Fu <vincent.fu@samsung.com>2023-12-28 22:12:20 -0500
committerVincent Fu <vincent.fu@samsung.com>2023-12-28 22:19:44 -0500
commitf4c55efe562b1dacc4c260c25300fe29081bba67 (patch)
tree4ee8066a8d9474656245877765d6ddb9ca341fba
parent6f2b92cfba7f5036a66575da61044b3af25cb1d3 (diff)
downloadfio-f4c55efe562b1dacc4c260c25300fe29081bba67.tar.gz
t/strided: call parent class check_result()
Make sure we call the parent class' check_result() method to check the return code, stderr output, etc. Signed-off-by: Vincent Fu <vincent.fu@samsung.com>
-rwxr-xr-xt/strided.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/strided.py b/t/strided.py
index b7655e1e9..b8396aef6 100755
--- a/t/strided.py
+++ b/t/strided.py
@@ -71,6 +71,10 @@ class StridedTest(FioJobCmdTest):
super().setup(fio_args)
def check_result(self):
+ super().check_result()
+ if not self.passed:
+ return
+
zonestart = 0 if 'offset' not in self.fio_opts else self.fio_opts['offset']
iospersize = self.fio_opts['zonesize'] / self.fio_opts['bs']
iosperrange = self.fio_opts['zonerange'] / self.fio_opts['bs']