From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hari Kumar Vemula Subject: [PATCH 5/5] test: add dump test cases under test-dump suite Date: Fri, 21 Sep 2018 16:58:48 +0100 Message-ID: <1537545528-27848-6-git-send-email-hari.kumarx.vemula@intel.com> References: <1537545528-27848-1-git-send-email-hari.kumarx.vemula@intel.com> Cc: bruce.richardson@intel.com, reshma.pattan@intel.com, Hari Kumar Vemula To: dev@dpdk.org Return-path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 265305B40 for ; Fri, 21 Sep 2018 17:59:45 +0200 (CEST) In-Reply-To: <1537545528-27848-1-git-send-email-hari.kumarx.vemula@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Grouped logging or dump related test cases to test-dump category Signed-off-by: Hari Kumar Vemula --- test/test/meson.build | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/test/test/meson.build b/test/test/meson.build index b3a9e7ef9..f6ba600b7 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -227,6 +227,20 @@ driver_test_names = [ ['cryptodev_sw_zuc_autotest'], ] +#All test cases in dump_test_names list are non-parallel +dump_test_names = [ + ['dump_struct_sizes'], + ['dump_mempool'], + ['dump_malloc_stats'], + ['dump_devargs'], + ['dump_log_types'], + ['dump_ring'], + ['quit_autotest'], + ['dump_physmem'], + ['dump_memzone'], + ['devargs_autotest'], +] + if dpdk_conf.has('RTE_LIBRTE_PDUMP') test_deps += 'pdump' endif @@ -313,6 +327,12 @@ if get_option('tests') is_parallel : false, suite : 'test-driver') endforeach - + foreach arg : dump_test_names + test(arg[0], dpdk_test, + env : ['DPDK_TEST=' + arg[0]], + timeout : timeout_seconds, + is_parallel : false, + suite : 'test-dump') + endforeach endif -- 2.13.6