From 382881f3012ad69d52f3c65c0855093a9ec3b3df Mon Sep 17 00:00:00 2001 From: Shin'ichiro Kawasaki Date: Fri, 22 Jul 2022 09:28:02 +0900 Subject: [PATCH] nvme/rc: replace SKIP_REASON with SKIP_REASONS The commit 5c2012764cbc (common, tests: Print multiple skip reasons) changed the variable SKIP_REASON to the array SKIP_REASONS. The commit e9828f1646cd ("nvme/rc: Fixup SKIP_REASON usage") changed SKIP_REASON usage from variable to array, but did not change the name. Just add 'S' to fix it. Fixes: e9828f1646cd ("nvme/rc: Fixup SKIP_REASON usage") Signed-off-by: Shin'ichiro Kawasaki --- tests/nvme/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/nvme/rc b/tests/nvme/rc index f2cfd8a..ff13ea2 100644 --- a/tests/nvme/rc +++ b/tests/nvme/rc @@ -98,7 +98,7 @@ _require_nvme_trtype_is_fabrics() { _require_nvme_cli_auth() { if ! nvme gen-dhchap-key -n nvmf-test-subsys > /dev/null 2>&1 ; then - SKIP_REASON+=("nvme gen-dhchap-key command missing") + SKIP_REASONS+=("nvme gen-dhchap-key command missing") return 1 fi return 0 -- 2.49.0