One of the tests required the OC device to have at least 8 parallel units. It's not really necessary as we can test the same thing on fewer (4) units. Change-Id: Ib3ccd7fee0b8ecd2663b12e4aa9aa802ebe238a8 Signed-off-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/461877 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Maciej Szwed <maciej.szwed@intel.com> Reviewed-by: Darek Stojaczyk <dariusz.stojaczyk@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
44 lines
1.1 KiB
Bash
Executable File
44 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
rpc_py=$rootdir/scripts/rpc.py
|
|
|
|
|
|
device=$1
|
|
FTL_BDEV_CONF=$testdir/config/ftl.json
|
|
|
|
json_kill() {
|
|
killprocess $svcpid
|
|
}
|
|
|
|
trap "json_kill; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
$rootdir/test/app/bdev_svc/bdev_svc & svcpid=$!
|
|
waitforlisten $svcpid
|
|
|
|
# Create new bdev from json configuration
|
|
$rootdir/scripts/gen_ftl.sh -j -a $device -n nvme0 -l 0-1 | $rpc_py load_subsystem_config
|
|
|
|
uuid=$($rpc_py get_bdevs | jq -r '.[0].uuid')
|
|
|
|
$rpc_py delete_ftl_bdev -b nvme0
|
|
|
|
# Restore bdev from json configuration
|
|
$rootdir/scripts/gen_ftl.sh -j -a $device -n nvme0 -l 0-1 -u $uuid | $rpc_py load_subsystem_config
|
|
# Create new bdev from json configuration
|
|
$rootdir/scripts/gen_ftl.sh -j -a $device -n nvme1 -l 2-2 | $rpc_py load_subsystem_config
|
|
# Create new bdev from RPC
|
|
$rpc_py construct_ftl_bdev -b nvme2 -a $device -l 3-3
|
|
|
|
$rpc_py delete_ftl_bdev -b nvme2
|
|
$rpc_py delete_ftl_bdev -b nvme0
|
|
$rpc_py delete_ftl_bdev -b nvme1
|
|
|
|
# TODO: add negative test cases
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
json_kill
|