From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hari Kumar Vemula Subject: [PATCH 4/5] test: add library dependent tests under test-driver suite Date: Fri, 21 Sep 2018 16:58:47 +0100 Message-ID: <1537545528-27848-5-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 mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 1D0435F19 for ; Fri, 21 Sep 2018 17:59:57 +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" Added test cases that depend on library as cryptodev Signed-off-by: Hari Kumar Vemula --- test/test/meson.build | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/test/test/meson.build b/test/test/meson.build index edda0b5b7..b3a9e7ef9 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -208,6 +208,25 @@ perf_test_names = [ ['pmd_perf_autotest'], ] +#All test cases in driver_test_names list are non-parallel +driver_test_names = [ + ['link_bonding_autotest'], + ['link_bonding_mode4_autotest'], + ['link_bonding_rssconf_autotest'], + ['cryptodev_sw_mrvl_autotest'], + ['cryptodev_dpaa2_sec_autotest'], + ['cryptodev_dpaa_sec_autotest'], + ['cryptodev_qat_autotest'], + ['cryptodev_aesni_mb_autotest'], + ['cryptodev_openssl_autotest'], + ['cryptodev_scheduler_autotest'], + ['cryptodev_aesni_gcm_autotest'], + ['cryptodev_null_autotest'], + ['cryptodev_sw_snow3g_autotest'], + ['cryptodev_sw_kasumi_autotest'], + ['cryptodev_sw_zuc_autotest'], +] + if dpdk_conf.has('RTE_LIBRTE_PDUMP') test_deps += 'pdump' endif @@ -281,11 +300,19 @@ if get_option('tests') suite : 'test-fast') endforeach foreach arg : perf_test_names - test(arg[0], dpdk_test, + test(arg[0], dpdk_test, env : ['DPDK_TEST=' + arg[0]], timeout : timeout_seconds, is_parallel : false, suite : 'test-perf') endforeach + foreach arg : driver_test_names + test(arg[0], dpdk_test, + env : ['DPDK_TEST=' + arg[0]], + timeout : timeout_seconds, + is_parallel : false, + suite : 'test-driver') + endforeach + endif -- 2.13.6