test/cuse: fix conflicting name for cuse tests

"nvme_cuse" name for run_test was already used by one
of the tests in nvme.sh.

This removes the naming conflict and will prepare for further
restructure of nvme-cuse tests, where "nvme_cuse" name will
encompass all cuse tests.

Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Change-Id: If141fe0ef492e0cde8e68490550de5d48fecb5e7
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2822
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Community-CI: Mellanox Build Bot
Reviewed-by: Changpeng Liu <changpeng.liu@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
Tomasz Zawadzki 2020-06-08 07:36:31 -04:00
parent b3767a239d
commit 24260d2a0d
3 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ if [ $SPDK_RUN_FUNCTIONAL_TEST -eq 1 ]; then
fi fi
if [[ $SPDK_TEST_NVME_CUSE -eq 1 ]]; then if [[ $SPDK_TEST_NVME_CUSE -eq 1 ]]; then
modprobe cuse modprobe cuse
run_test "nvme_cuse" test/nvme/cuse/nvme_cuse.sh run_test "nvme_cuse_rpc" test/nvme/cuse/nvme_cuse_rpc.sh
run_test "nvme_cli_cuse" test/nvme/spdk_nvme_cli_cuse.sh run_test "nvme_cli_cuse" test/nvme/spdk_nvme_cli_cuse.sh
run_test "nvme_smartctl_cuse" test/nvme/spdk_smartctl_cuse.sh run_test "nvme_smartctl_cuse" test/nvme/spdk_smartctl_cuse.sh
run_test "nvme_ns_manage_cuse" test/nvme/nvme_ns_manage_cuse.sh run_test "nvme_ns_manage_cuse" test/nvme/nvme_ns_manage_cuse.sh

View File

@ -117,7 +117,7 @@ run_test "nvme_err_injection" $testdir/err_injection/err_injection
run_test "nvme_overhead" $testdir/overhead/overhead -s 4096 -t 1 -H run_test "nvme_overhead" $testdir/overhead/overhead -s 4096 -t 1 -H
run_test "nvme_arbitration" $SPDK_EXAMPLE_DIR/arbitration -t 3 -i 0 run_test "nvme_arbitration" $SPDK_EXAMPLE_DIR/arbitration -t 3 -i 0
if [ $SPDK_TEST_NVME_CUSE -eq 1 ]; then if [ $SPDK_TEST_NVME_CUSE -eq 1 ]; then
run_test "nvme_cuse" $testdir/cuse/cuse run_test "nvme_cuse_app" $testdir/cuse/cuse
fi fi
if [[ $CONFIG_FIO_PLUGIN == y ]]; then if [[ $CONFIG_FIO_PLUGIN == y ]]; then