From 4883f8f65180ef4e22d6caf4abaf6028faa1af61 Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Tue, 26 Dec 2023 21:55:59 -0500 Subject: [PATCH] t/nvmept: 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/nvmept.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/t/nvmept.py b/t/nvmept.py index c08fb350..1ade64dc 100755 --- a/t/nvmept.py +++ b/t/nvmept.py @@ -55,6 +55,8 @@ class PassThruTest(FioJobCmdTest): def check_result(self): + super().check_result() + if 'rw' not in self.fio_opts: return -- 2.25.1