From mboxrd@z Thu Jan 1 00:00:00 1970 From: Hari Kumar Vemula Subject: [PATCH v6 3/5] test: add performance tests under perf-tests suite Date: Fri, 18 Jan 2019 17:40:46 +0000 Message-ID: <1547833248-6943-4-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 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) 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 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