From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcin Kerlin Subject: [PATCH 1/1] fix the number of operations in libcrypto test Date: Mon, 10 Oct 2016 10:07:50 +0200 Message-ID: <1476086870-10538-1-git-send-email-marcinx.kerlin@intel.com> Cc: pablo.de.lara.guarch@intel.com, michalx.k.jastrzebski@intel.com, Marcin Kerlin 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 6DA276A87 for ; Mon, 10 Oct 2016 10:09:43 +0200 (CEST) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch reduce the number of total operations from 1M to 10K, because test is taking too long time now. Fixes: ffbe3be0d4b5 ("app/test: add libcrypto") Signed-off-by: Marcin Kerlin --- app/test/test_cryptodev_perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_cryptodev_perf.c b/app/test/test_cryptodev_perf.c index 4aee9af..43a7166 100644 --- a/app/test/test_cryptodev_perf.c +++ b/app/test/test_cryptodev_perf.c @@ -3420,7 +3420,7 @@ test_perf_snow3G_vary_pkt_size(void) static int test_perf_libcrypto_vary_pkt_size(void) { - unsigned int total_operations = 1000000; + unsigned int total_operations = 10000; unsigned int burst_size = { 64 }; unsigned int buf_lengths[] = { 64, 128, 256, 512, 768, 1024, 1280, 1536, 1792, 2048 }; -- 1.9.1