In _have_kernel_option(), SKIP_REASON = "kernel option NVME_MULTIPATH has not been enabled" is expected but all nvmeof-mp tests are skipped due to the SKIP_REASON. For example: ----------------------------------------------------- ./check nvmeof-mp/001 nvmeof-mp/*** [not run] kernel option NVME_MULTIPATH has not been enabled ----------------------------------------------------- Avoid the issue by unsetting the SKIP_REASON. Signed-off-by: Xiao Yang <yangx.jy@xxxxxxxxxxx> --- tests/nvmeof-mp/rc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/nvmeof-mp/rc b/tests/nvmeof-mp/rc index dcb2e3c..9c91f8c 100755 --- a/tests/nvmeof-mp/rc +++ b/tests/nvmeof-mp/rc @@ -24,6 +24,11 @@ and multipathing has been enabled in the nvme_core kernel module" return fi + # In _have_kernel_option(), SKIP_REASON = "kernel option + # NVME_MULTIPATH has not been enabled" is expected so + # avoid skipping tests by unsetting the SKIP_REASON + unset SKIP_REASON + _have_configfs || return required_modules=( dm_multipath -- 2.34.1