Fix SC2064 issue. Use single quotes, otherwise trap expands now rather than when signalled. Change-Id: I0b3a9157f52eed037e8d217f639c64d6876ec1e1 Signed-off-by: Karol Latecki <karol.latecki@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/464655 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Paul Luse <paul.e.luse@intel.com> Reviewed-by: Pawel Kaminski <pawelx.kaminski@intel.com>
67 lines
1.5 KiB
Bash
Executable File
67 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
curdir=$(dirname $(readlink -f "$BASH_SOURCE"))
|
|
rootdir=$(readlink -f $curdir/../../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
rpc_py=$rootdir/scripts/rpc.py
|
|
|
|
rm -f aio*
|
|
truncate -s 128M aio0
|
|
truncate -s 128M aio1
|
|
truncate -s 128M aio2
|
|
truncate -s 128M aio3
|
|
truncate -s 128M aio4
|
|
truncate -s 128M aio5
|
|
truncate -s 128M aio6
|
|
|
|
echo "
|
|
[AIO]
|
|
AIO ./aio0 aio0 512
|
|
AIO ./aio1 aio1 512
|
|
AIO ./aio2 aio2 512
|
|
AIO ./aio3 aio3 512
|
|
AIO ./aio4 aio4 512
|
|
AIO ./aio5 aio5 512
|
|
AIO ./aio6 aio6 512
|
|
" > $curdir/config
|
|
|
|
$rootdir/app/iscsi_tgt/iscsi_tgt -c $curdir/config &
|
|
spdk_pid=$!
|
|
|
|
waitforlisten $spdk_pid
|
|
|
|
# Create ocf on persistent storage
|
|
|
|
$rpc_py construct_ocf_bdev ocfWT wt aio0 aio1
|
|
$rpc_py construct_ocf_bdev ocfPT pt aio2 aio3
|
|
$rpc_py construct_ocf_bdev ocfWB0 wb aio4 aio5
|
|
$rpc_py construct_ocf_bdev ocfWB1 wb aio4 aio6
|
|
|
|
# Sorting bdevs because we dont guarantee that they are going to be
|
|
# in the same order after shutdown
|
|
($rpc_py get_ocf_bdevs | jq '(.. | arrays) |= sort') > ./ocf_bdevs
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
killprocess $spdk_pid
|
|
|
|
# Check for ocf persistency after restart
|
|
$rootdir/app/iscsi_tgt/iscsi_tgt -c $curdir/config &
|
|
spdk_pid=$!
|
|
|
|
trap 'killprocess $spdk_pid; exit 1' SIGINT SIGTERM EXIT
|
|
|
|
waitforlisten $spdk_pid
|
|
|
|
# OCF should be loaded now as well
|
|
|
|
($rpc_py get_ocf_bdevs | jq '(.. | arrays) |= sort') > ./ocf_bdevs_verify
|
|
|
|
diff ocf_bdevs ocf_bdevs_verify
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
killprocess $spdk_pid
|
|
rm -f aio* $curdir/config ocf_bdevs ocf_bdevs_verify
|