From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hari Kumar Vemula Subject: [PATCH v6 5/5] test: add dump test cases under debug-tests suite Date: Fri, 18 Jan 2019 17:40:48 +0000 Message-ID: <1547833248-6943-6-git-send-email-hari.kumarx.vemula@intel.com> References: <1540450203-13901-1-git-send-email-hari.kumarx.vemula@intel.com> <1547833248-6943-1-git-send-email-hari.kumarx.vemula@intel.com> Cc: reshma.pattan@intel.com, bruce.richardson@intel.com, Hari Kumar Vemula To: dev@dpdk.org Return-path: Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id A9ABB2BE1 for ; Fri, 18 Jan 2019 18:41:57 +0100 (CET) In-Reply-To: <1547833248-6943-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 debug category Signed-off-by: Hari Kumar Vemula Acked-by: Bruce Richardson --- test/test/meson.build | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/test/test/meson.build b/test/test/meson.build index d56c525ea..318e0454d 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -258,6 +258,18 @@ 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', + 'dump_physmem', + 'dump_memzone', +] + if dpdk_conf.has('RTE_LIBRTE_PDUMP') test_deps += 'pdump' endif @@ -355,4 +367,12 @@ if get_option('tests') is_parallel : false, suite : 'driver-tests') endforeach + + foreach arg : dump_test_names + test(arg, dpdk_test, + env : ['DPDK_TEST=' + arg], + timeout : timeout_seconds, + is_parallel : false, + suite : 'debug-tests') + endforeach endif -- 2.17.2