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 <shinichiro.kawasaki@wdc.com>
_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