Correct shellcheck rule SC2068: Double quote array expansions to avoid re-splitting elements. Signed-off-by: Maciej Wawryk <maciejx.wawryk@intel.com> Change-Id: Iefc4f0104249f4d437a66c3d9c7a195f4f6f6da3 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/475690 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
39 lines
809 B
Bash
Executable File
39 lines
809 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
curdir=$(dirname $(readlink -f "${BASH_SOURCE[0]}"))
|
|
rootdir=$(readlink -f $curdir/../../..)
|
|
plugindir=$rootdir/examples/bdev/fio_plugin
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
function fio_verify(){
|
|
fio_bdev $curdir/test.fio --aux-path=/tmp/ --ioengine=spdk_bdev "$@"
|
|
}
|
|
|
|
function cleanup(){
|
|
rm -f $curdir/modes.conf
|
|
}
|
|
|
|
trap "cleanup; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
nvme_cfg=$($rootdir/scripts/gen_nvme.sh)
|
|
|
|
config="
|
|
$nvme_cfg
|
|
|
|
[Split]
|
|
Split Nvme0n1 8 101
|
|
|
|
[OCF]
|
|
OCF PT_Nvme pt Nvme0n1p0 Nvme0n1p1
|
|
OCF WT_Nvme wt Nvme0n1p2 Nvme0n1p3
|
|
OCF WB_Nvme0 wb Nvme0n1p4 Nvme0n1p5
|
|
OCF WB_Nvme1 wb Nvme0n1p6 Nvme0n1p7
|
|
"
|
|
echo "$config" > $curdir/modes.conf
|
|
|
|
fio_verify --filename=PT_Nvme:WT_Nvme:WB_Nvme0:WB_Nvme1 --spdk_conf=$curdir/modes.conf
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
cleanup
|