Spdk/test/dpdk_memory_utility/test_dpdk_mem_info.sh

27 lines
513 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# SPDX-License-Identifier: BSD-3-Clause
# Copyright (C) 2019 Intel Corporation
# All rights reserved.
#
testdir=$(readlink -f $(dirname $0))
rootdir=$(readlink -f $testdir/../..)
source $rootdir/test/common/autotest_common.sh
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