The test time was excessively long it does not need to go for 2^32 iterations.
Signed-off-by: Stephen Hemminger <[email protected]> --- app/test/test_reciprocal_division_perf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test/test_reciprocal_division_perf.c b/app/test/test_reciprocal_division_perf.c index 6c8afc6e36..046a77f5f2 100644 --- a/app/test/test_reciprocal_division_perf.c +++ b/app/test/test_reciprocal_division_perf.c @@ -13,8 +13,8 @@ #include <rte_random.h> #include <rte_reciprocal.h> -#define MAX_ITERATIONS (1ULL << 32) -#define DIVIDE_ITER (1ULL << 28) +#define MAX_ITERATIONS (1ULL << 24) +#define DIVIDE_ITER (1ULL << 10) static int test_reciprocal_division_perf(void) -- 2.53.0

