2019-03-07 11:36:23 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
2019-10-25 07:31:14 +00:00
|
|
|
source $testdir/common.sh
|
2019-03-07 11:36:23 +00:00
|
|
|
|
|
|
|
tests=('-q 1 -w randwrite -t 4 -o 69632' '-q 128 -w randwrite -t 4 -o 4096' '-q 128 -w verify -t 4 -o 4096')
|
|
|
|
device=$1
|
2019-10-25 07:31:14 +00:00
|
|
|
rpc_py=$rootdir/scripts/rpc.py
|
2019-03-07 11:36:23 +00:00
|
|
|
|
2019-10-25 07:31:14 +00:00
|
|
|
ftl_bdev_conf=$testdir/config/ftl.conf
|
|
|
|
gen_ftl_nvme_conf > $ftl_bdev_conf
|
2019-03-07 11:36:23 +00:00
|
|
|
|
|
|
|
for (( i=0; i<${#tests[@]}; i++ )) do
|
|
|
|
timing_enter "${tests[$i]}"
|
2019-10-25 07:31:14 +00:00
|
|
|
$rootdir/test/bdev/bdevperf/bdevperf -z -T ftl0 ${tests[$i]} -c $ftl_bdev_conf &
|
|
|
|
bdevperf_pid=$!
|
|
|
|
|
|
|
|
trap 'killprocess $bdevperf_pid; exit 1' SIGINT SIGTERM EXIT
|
|
|
|
waitforlisten $bdevperf_pid
|
|
|
|
$rpc_py bdev_nvme_attach_controller -b nvme0 -a $device -t pcie
|
|
|
|
$rpc_py bdev_ocssd_create -c nvme0 -b nvme0n1
|
|
|
|
$rpc_py bdev_ftl_create -b ftl0 -d nvme0n1
|
|
|
|
$rootdir/test/bdev/bdevperf/bdevperf.py perform_tests
|
|
|
|
$rpc_py delete_ftl_bdev -b ftl0
|
|
|
|
$rpc_py bdev_ocssd_delete nvme0n1
|
|
|
|
$rpc_py delete_nvme_controller nvme0
|
|
|
|
killprocess $bdevperf_pid
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
2019-03-07 11:36:23 +00:00
|
|
|
timing_exit "${tests[$i]}"
|
|
|
|
done
|
2019-10-25 07:31:14 +00:00
|
|
|
|
|
|
|
rm -f $ftl_bdev_conf
|