This job is already done by the target test. Also, this makes sure that nvme_ns_manage_cuse is always executed (note that we don't consider it as a test to be skipped). Signed-off-by: Michal Berger <michal.berger@intel.com> Change-Id: I6d964230e4d961152912b1f8a0636712039eeae6 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17080 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
25 lines
706 B
Bash
Executable File
25 lines
706 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2020 Intel Corporation
|
|
# All rights reserved.
|
|
#
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
source $rootdir/scripts/common.sh
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
if [[ $(uname) != "Linux" ]]; then
|
|
echo "NVMe cuse tests only supported on Linux"
|
|
exit 1
|
|
fi
|
|
|
|
modprobe cuse
|
|
run_test "nvme_cuse_app" $testdir/cuse
|
|
run_test "nvme_cuse_rpc" $testdir/nvme_cuse_rpc.sh
|
|
run_test "nvme_cli_cuse" $testdir/spdk_nvme_cli_cuse.sh
|
|
run_test "nvme_smartctl_cuse" $testdir/spdk_smartctl_cuse.sh
|
|
run_test "nvme_ns_manage_cuse" $testdir/nvme_ns_manage_cuse.sh
|
|
rmmod cuse
|
|
|
|
"$rootdir/scripts/setup.sh"
|