From: Vincent Fu Date: Fri, 29 Dec 2023 03:12:20 +0000 (-0500) Subject: t/strided: call parent class check_result() X-Git-Tag: fio-3.37~71 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f4c55efe562b1dacc4c260c25300fe29081bba67;p=fio.git 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 --- diff --git a/t/strided.py b/t/strided.py index b7655e1e..b8396aef 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']