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
|
2020-01-16 14:57:53 +00:00
|
|
|
use_append=$2
|
2019-10-25 07:31:14 +00:00
|
|
|
rpc_py=$rootdir/scripts/rpc.py
|
2019-03-07 11:36:23 +00:00
|
|
|
|
|
|
|
for (( i=0; i<${#tests[@]}; i++ )) do
|
|
|
|
timing_enter "${tests[$i]}"
|
2020-03-18 10:23:51 +00:00
|
|
|
"$rootdir/test/bdev/bdevperf/bdevperf" -z -T ftl0 ${tests[$i]} --json <(gen_ftl_nvme_conf) &
|
2019-10-25 07:31:14 +00:00
|
|
|
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
|
2020-01-16 14:57:53 +00:00
|
|
|
$rpc_py bdev_ftl_create -b ftl0 -d nvme0n1 $use_append
|
|
|
|
|
2019-10-25 07:31:14 +00:00
|
|
|
$rootdir/test/bdev/bdevperf/bdevperf.py perform_tests
|
|
|
|
$rpc_py delete_ftl_bdev -b ftl0
|
|
|
|
$rpc_py bdev_ocssd_delete nvme0n1
|
2020-01-16 15:02:25 +00:00
|
|
|
$rpc_py bdev_nvme_detach_controller nvme0
|
2019-10-25 07:31:14 +00:00
|
|
|
killprocess $bdevperf_pid
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
2019-03-07 11:36:23 +00:00
|
|
|
timing_exit "${tests[$i]}"
|
|
|
|
done
|