The test uses `scripts/sma-client.py` to send a series of gRPC methods that are serviced by the SMA then verify that new vhost device are available on qemu guest os. Change-Id: Ic4a1d56da59a636556fd6dfd4787fc613a4eb325 Signed-off-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/12412 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
12 lines
331 B
Bash
Executable File
12 lines
331 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f "$(dirname "$0")")
|
|
rootdir=$(readlink -f "$testdir/../..")
|
|
|
|
source "$rootdir/test/common/autotest_common.sh"
|
|
|
|
run_test "sma_nvmf_tcp" $testdir/nvmf_tcp.sh
|
|
run_test "sma_plugins" $testdir/plugins.sh
|
|
run_test "sma_discovery" $testdir/discovery.sh
|
|
run_test "sma_vhost" $testdir/vhost_blk.sh
|