From: Marcin Kerlin Date: Mon, 10 Oct 2016 08:07:50 +0000 (+0200) Subject: app/test: reduce libcrypto operations number X-Git-Tag: spdx-start~5519 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=0640e96235cfcbb4959263f16fa609caf7b2a518;p=dpdk.git app/test: reduce libcrypto operations number 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 Acked-by: Pablo de Lara --- diff --git a/app/test/test_cryptodev_perf.c b/app/test/test_cryptodev_perf.c index 4aee9afea8..43a7166e98 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 };