2019-09-09 11:12:24 +00:00
|
|
|
#!/usr/bin/env bash
|
2022-11-02 15:49:40 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright (C) 2019 Intel Corporation
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
2019-09-09 11:12:24 +00:00
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
source $rootdir/test/spdkcli/common.sh
|
|
|
|
|
2020-03-17 10:58:09 +00:00
|
|
|
function err_cleanup() {
|
|
|
|
if [ -n "$socat_pid" ]; then
|
|
|
|
killprocess $socat_pid || true
|
|
|
|
fi
|
|
|
|
killprocess $spdk_tgt_pid
|
|
|
|
}
|
|
|
|
|
2019-09-09 11:12:24 +00:00
|
|
|
IP_ADDRESS="127.0.0.1"
|
|
|
|
PORT="9998"
|
|
|
|
|
2020-03-17 10:58:09 +00:00
|
|
|
trap 'err_cleanup; exit 1' SIGINT SIGTERM EXIT
|
2019-09-09 11:12:24 +00:00
|
|
|
|
|
|
|
timing_enter run_spdk_tgt_tcp
|
2022-09-14 10:21:42 +00:00
|
|
|
$SPDK_BIN_DIR/spdk_tgt -m 0x3 -p 0 &
|
2019-09-09 11:12:24 +00:00
|
|
|
spdk_tgt_pid=$!
|
|
|
|
|
2020-03-17 10:58:09 +00:00
|
|
|
waitforlisten $spdk_tgt_pid
|
|
|
|
|
|
|
|
# socat will terminate automatically after the connection is closed
|
|
|
|
socat TCP-LISTEN:$PORT UNIX-CONNECT:$DEFAULT_RPC_ADDR &
|
|
|
|
socat_pid=$!
|
|
|
|
|
2020-03-17 11:04:22 +00:00
|
|
|
$rootdir/scripts/rpc.py -r 100 -t 2 -s $IP_ADDRESS -p $PORT rpc_get_methods
|
2019-09-09 11:12:24 +00:00
|
|
|
|
|
|
|
timing_exit run_spdk_tgt_tcp
|
|
|
|
|
2020-03-17 10:30:37 +00:00
|
|
|
trap - SIGINT SIGTERM EXIT
|
2019-09-09 11:12:24 +00:00
|
|
|
killprocess $spdk_tgt_pid
|