2019-12-12 21:41:38 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
|
|
|
|
rpc_py="$rootdir/scripts/rpc.py"
|
2020-05-11 21:15:03 +00:00
|
|
|
SPDK_APP="$SPDK_BIN_DIR/spdk_tgt"
|
2019-12-12 21:41:38 +00:00
|
|
|
MEM_SCRIPT="$rootdir/scripts/dpdk_mem_info.py"
|
|
|
|
|
|
|
|
$SPDK_APP &
|
|
|
|
spdkpid=$!
|
|
|
|
|
|
|
|
waitforlisten $spdkpid
|
|
|
|
|
|
|
|
trap 'killprocess $spdkpid' SIGINT SIGTERM EXIT
|
|
|
|
|
|
|
|
$rpc_py env_dpdk_get_mem_stats
|
|
|
|
|
|
|
|
$MEM_SCRIPT
|
|
|
|
|
|
|
|
$MEM_SCRIPT -m 0
|
|
|
|
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
killprocess $spdkpid
|