From 08add32896109180a04cf9ad13755a03cf5ab511 Mon Sep 17 00:00:00 2001 From: Seth Howell Date: Thu, 12 Dec 2019 14:41:38 -0700 Subject: [PATCH] test: add test to validate dpdk mem utility 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 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/477867 Tested-by: SPDK CI Jenkins Community-CI: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Shuhei Matsumoto --- autotest.sh | 2 +- .../dpdk_memory_utility/test_dpdk_mem_info.sh | 25 +++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) create mode 100755 test/dpdk_memory_utility/test_dpdk_mem_info.sh diff --git a/autotest.sh b/autotest.sh index fb0b7fb43..b1eba74d0 100755 --- a/autotest.sh +++ b/autotest.sh @@ -148,7 +148,6 @@ if [ $SPDK_TEST_UNITTEST -eq 1 ]; then run_test "unittest" ./test/unit/unittest.sh fi - if [ $SPDK_RUN_FUNCTIONAL_TEST -eq 1 ]; then timing_enter lib @@ -157,6 +156,7 @@ if [ $SPDK_RUN_FUNCTIONAL_TEST -eq 1 ]; then run_test "json_config" ./test/json_config/json_config.sh run_test "alias_rpc" test/json_config/alias_rpc/alias_rpc.sh run_test "spdkcli_tcp" test/spdkcli/tcp.sh + run_test "dpdk_mem_utility" test/dpdk_memory_utility/test_dpdk_mem_info.sh if [ $SPDK_TEST_BLOCKDEV -eq 1 ]; then run_test "blockdev_general" test/bdev/blockdev.sh diff --git a/test/dpdk_memory_utility/test_dpdk_mem_info.sh b/test/dpdk_memory_utility/test_dpdk_mem_info.sh new file mode 100755 index 000000000..bc16ffc80 --- /dev/null +++ b/test/dpdk_memory_utility/test_dpdk_mem_info.sh @@ -0,0 +1,25 @@ +#!/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