From f4c55efe562b1dacc4c260c25300fe29081bba67 Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Thu, 28 Dec 2023 22:12:20 -0500 Subject: [PATCH] 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 --- t/strided.py | 4 ++++ 1 file changed, 4 insertions(+) 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'] -- 2.25.1