numam-spdk/test/nvme/spdk_nvme_cli_cuse.sh
dongx.yi 0edc874f85 test/nvme: fix wrong exit commands.
Issue reports:
	return: can only `return' from a function or sourced script.
Use "exit 1" instead, and ignore changes to json.power_on_time.hours.

Issue link: https://github.com/spdk/spdk/issues/1111
This is to fix issue #1111

Signed-off-by: dongx.yi <dongx.yi@intel.com>
Change-Id: I90198e8237cb587fbeb7777f6b2da783fd15ba04
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/478014
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
2019-12-20 10:07:39 +00:00

75 lines
1.5 KiB
Bash
Executable File

#!/usr/bin/env bash
testdir=$(readlink -f $(dirname $0))
rootdir=$(readlink -f $testdir/../..)
source $rootdir/scripts/common.sh
source $rootdir/test/common/autotest_common.sh
NVME_CMD=/usr/local/src/nvme-cli/nvme
rpc_py=$rootdir/scripts/rpc.py
$rootdir/app/spdk_tgt/spdk_tgt -m 0x3 &
spdk_tgt_pid=$!
trap 'kill -9 ${spdk_tgt_pid}; exit 1' SIGINT SIGTERM EXIT
waitforlisten $spdk_tgt_pid
bdf=$(iter_pci_class_code 01 08 02 | head -1)
$rpc_py bdev_nvme_attach_controller -b Nvme0 -t PCIe -a ${bdf}
$rpc_py bdev_nvme_cuse_register -n Nvme0
sleep 5
if [ ! -c /dev/spdk/nvme0 ]; then
exit 1
fi
$rpc_py bdev_get_bdevs
$rpc_py bdev_nvme_get_controllers
for ns in $(ls /dev/spdk/nvme?n?); do
${NVME_CMD} get-ns-id $ns
${NVME_CMD} id-ns $ns
${NVME_CMD} list-ns $ns
done
for ctrlr in $(ls /dev/spdk/nvme?); do
${NVME_CMD} id-ctrl $ctrlr
${NVME_CMD} list-ctrl $ctrlr
${NVME_CMD} fw-log $ctrlr
${NVME_CMD} smart-log $ctrlr
${NVME_CMD} error-log $ctrlr
${NVME_CMD} get-feature $ctrlr -f 1 -s 1 -l 100
${NVME_CMD} get-log $ctrlr -i 1 -l 100
${NVME_CMD} reset $ctrlr
done
if [ ! -c /dev/spdk/nvme0 ]; then
exit 1
fi
$rpc_py bdev_nvme_cuse_unregister -n Nvme0
sleep 1
if [ -c /dev/spdk/nvme0 ]; then
exit 1
fi
$rpc_py bdev_nvme_cuse_register -n Nvme0
sleep 1
if [ ! -c /dev/spdk/nvme0 ]; then
exit 1
fi
$rpc_py bdev_nvme_detach_controller Nvme0
sleep 1
if [ -c /dev/spdk/nvme0 ]; then
exit 1
fi
trap - SIGINT SIGTERM EXIT
killprocess $spdk_tgt_pid
report_test_completion spdk_nvme_cli_cuse