From 3f4cbce900a7d6ef184cff17abdf395324d955c0 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 25 Feb 2022 10:27:14 +0000 Subject: [PATCH] performance-metrics: Set default number of iterations to 5 Many of the tests already amortize their results over a longer time period/sample so it is not necessary to run 30 iterations. Signed-off-by: Rob Bradford --- performance-metrics/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/performance-metrics/src/main.rs b/performance-metrics/src/main.rs index 1c5e99af4..c9389196d 100644 --- a/performance-metrics/src/main.rs +++ b/performance-metrics/src/main.rs @@ -119,7 +119,7 @@ impl PerformanceTestControl { const fn default() -> Self { Self { test_time: 10, - test_iterations: 30, + test_iterations: 5, queue_num: None, queue_size: None, net_rx: None,