From mboxrd@z Thu Jan 1 00:00:00 1970 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) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Sep 2018 08:59:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,285,1534834800"; d="scan'208";a="93757168" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga002.jf.intel.com with ESMTP; 21 Sep 2018 08:59:34 -0700 Received: from wgcvswdev001.ir.intel.com (wgcvswdev001.ir.intel.com [10.102.246.100]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id w8LFxXfd023573; Fri, 21 Sep 2018 16:59:34 +0100 Received: from wgcvswdev001.ir.intel.com (localhost [127.0.0.1]) by wgcvswdev001.ir.intel.com with ESMTP id w8LFxLT5028563; Fri, 21 Sep 2018 16:59:21 +0100 Received: (from hvemulax@localhost) by wgcvswdev001.ir.intel.com with œ id w8LFxLID028559; Fri, 21 Sep 2018 16:59:21 +0100 From: Hari Kumar Vemula To: dev@dpdk.org Cc: bruce.richardson@intel.com, reshma.pattan@intel.com, Hari Kumar Vemula Date: Fri, 21 Sep 2018 16:58:47 +0100 Message-Id: <1537545528-27848-5-git-send-email-hari.kumarx.vemula@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: <1537545528-27848-1-git-send-email-hari.kumarx.vemula@intel.com> References: <1537545528-27848-1-git-send-email-hari.kumarx.vemula@intel.com> Subject: [dpdk-dev] [PATCH 4/5] test: add library dependent tests under test-driver suite X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Sep 2018 15:59:58 -0000 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