From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 4E5C52BE5 for ; Fri, 18 Jan 2019 18:41:55 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Jan 2019 09:41:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,491,1539673200"; d="scan'208";a="127133057" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga002.jf.intel.com with ESMTP; 18 Jan 2019 09:41:53 -0800 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 x0IHfqkV028425; Fri, 18 Jan 2019 17:41:52 GMT Received: from wgcvswdev001.ir.intel.com (localhost [127.0.0.1]) by wgcvswdev001.ir.intel.com with ESMTP id x0IHfIhq007123; Fri, 18 Jan 2019 17:41:18 GMT Received: (from jmparthx@localhost) by wgcvswdev001.ir.intel.com with œ id x0IHfIox007119; Fri, 18 Jan 2019 17:41:18 GMT From: Hari Kumar Vemula To: dev@dpdk.org Cc: reshma.pattan@intel.com, bruce.richardson@intel.com, Hari Kumar Vemula Date: Fri, 18 Jan 2019 17:40:46 +0000 Message-Id: <1547833248-6943-4-git-send-email-hari.kumarx.vemula@intel.com> X-Mailer: git-send-email 1.7.12.2 In-Reply-To: <1547833248-6943-1-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> Subject: [dpdk-dev] [PATCH v6 3/5] test: add performance tests under perf-tests 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, 18 Jan 2019 17:41:55 -0000 Grouped performace test cases under perf tests category Signed-off-by: Hari Kumar Vemula Acked-by: Bruce Richardson --- test/test/meson.build | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/test/test/meson.build b/test/test/meson.build index 1d416967c..47c97c276 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -213,6 +213,32 @@ fast_non_parallel_test_names =[ 'thash_autotest', ] +#All test cases in perf_test_names list are non-parallel +perf_test_names = [ + 'ring_perf_autotest', + 'mempool_perf_autotest', + 'memcpy_perf_autotest', + 'hash_perf_autotest', + 'timer_perf_autotest', + 'reciprocal_division', + 'reciprocal_division_perf', + 'lpm_perf_autotest', + 'red_all', + 'barrier_autotest', + 'hash_multiwriter_autotest', + 'timer_racecond_autotest', + 'efd_autotest', + 'hash_functions_autotest', + 'eventdev_selftest_sw', + 'member_perf_autotest', + 'efd_perf_autotest', + 'lpm6_perf_autotest', + 'red_perf', + 'distributor_perf_autotest', + 'ring_pmd_perf_autotest', + 'pmd_perf_autotest', +] + if dpdk_conf.has('RTE_LIBRTE_PDUMP') test_deps += 'pdump' endif @@ -294,4 +320,12 @@ if get_option('tests') is_parallel : false, suite : 'fast-tests') endforeach + + foreach arg : perf_test_names + test(arg, dpdk_test, + env : ['DPDK_TEST=' + arg], + timeout : timeout_seconds, + is_parallel : false, + suite : 'perf-tests') + endforeach endif -- 2.17.2