From f097d080a9937ffee36c5b7ef44dbf8764eab480 Mon Sep 17 00:00:00 2001 From: Ivan Ivanets Date: Wed, 26 Mar 2025 16:28:54 +0200 Subject: [PATCH] tests: change cpu count for iperf test Type: test Change default value = 2 for cpu_cnt parameter for iperf3 client/server for performance improvement. As a result, default cpu indexes for iperf process with be equal 3 and 4, for vpp worker 2, for main vpp 1 and system 0. Change-Id: I711fed69edd0db8764e711adba7e558af8357553 Signed-off-by: Ivan Ivanets --- resources/libraries/robot/hoststack/hoststack.robot | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/libraries/robot/hoststack/hoststack.robot b/resources/libraries/robot/hoststack/hoststack.robot index 6d1f49a4fb..12b2dc01dc 100644 --- a/resources/libraries/robot/hoststack/hoststack.robot +++ b/resources/libraries/robot/hoststack/hoststack.robot @@ -89,7 +89,7 @@ | ... | use_app_socket_api=${True} | &{iperf3_server_attr}= | ... | role=server -| ... | cpu_cnt=${1} +| ... | cpu_cnt=${2} | ... | cfg_vpp_feature=${Empty} | ... | namespace=default | ... | vcl_config=vcl_iperf3.conf @@ -99,7 +99,7 @@ | ... | ip_version=${4} | &{iperf3_client_attr}= | ... | role=client -| ... | cpu_cnt=${1} +| ... | cpu_cnt=${2} | ... | cfg_vpp_feature=${Empty} | ... | namespace=default | ... | vcl_config=vcl_iperf3.conf -- 2.16.6