08add32896
This test essentially confirms that the new RPC properly creates a test file and that the script can parse that file and run through a basic set of operations and exit without an error. Change-Id: Idf0c831020696a3a62fcef13171eedf3fcf63f5b Signed-off-by: Seth Howell <seth.howell@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/477867 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
26 lines
475 B
Bash
Executable File
26 lines
475 B
Bash
Executable File
#!/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"
|
|
SPDK_APP="$rootdir/app/spdk_tgt/spdk_tgt"
|
|
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
|