From 3f2e2ff655fccc0756a74ec837163e59f1804d4e Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Mon, 11 Feb 2019 16:38:20 +0000 Subject: [PATCH] FIX: Comparision for RXQ Change-Id: I8e8c72ded61a53fe0170cde39c52145ab816f31c Signed-off-by: Peter Mikus --- .../libraries/robot/performance/performance_configuration.robot | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/resources/libraries/robot/performance/performance_configuration.robot b/resources/libraries/robot/performance/performance_configuration.robot index 73041081ae..cf287c2af6 100644 --- a/resources/libraries/robot/performance/performance_configuration.robot +++ b/resources/libraries/robot/performance/performance_configuration.robot @@ -2325,7 +2325,7 @@ | | ... | ${use_tuned_cfs}=${False} | ${auto_scale}=${True} | | ... | | ${nf_cpus_count}= | Get Length | ${nf_cpus} -| | ${rxq}= | Run Keyword If | '${auto_scale}' == ${True} +| | ${rxq}= | Run Keyword If | ${auto_scale} == ${True} | | ... | Set Variable | ${rxq_count_int} | | ... | ELSE | Set Variable | ${1} | | Import Library | resources.libraries.python.QemuUtils | qemu_id=${qemu_id} @@ -2471,7 +2471,7 @@ | | ... | ${use_tuned_cfs}=${False} | ${auto_scale}=${True} | | ... | | ${nf_cpus_count}= | Get Length | ${nf_cpus} -| | ${rxq}= | Run Keyword If | '${auto_scale}' == ${True} +| | ${rxq}= | Run Keyword If | ${auto_scale} == ${True} | | ... | Set Variable | ${rxq_count_int} | | ... | ELSE | Set Variable | ${1} | | Import Library | resources.libraries.python.QemuUtils | qemu_id=${qemu_id} @@ -3067,7 +3067,7 @@ | | [Arguments] | ${dut} | ${nf_chain}=${1} | ${nf_nodes}=${1} | | ... | ${auto_scale}=${True} | | ... -| | ${rxq}= | Run Keyword If | '${auto_scale}' == ${True} +| | ${rxq}= | Run Keyword If | ${auto_scale} == ${True} | | ... | Set Variable | ${rxq_count_int} | | ... | ELSE | Set Variable | ${1} | | ${bd_id2}= | Evaluate | ${nf_nodes}+1 @@ -3157,7 +3157,7 @@ | | ... | | [Arguments] | ${nf_chain}=${1} | ${nf_nodes}=${1} | ${auto_scale}=${True} | | ... -| | ${rxq}= | Run Keyword If | '${auto_scale}' == ${True} +| | ${rxq}= | Run Keyword If | ${auto_scale} == ${True} | | ... | Set Variable | ${rxq_count_int} | | ... | ELSE | Set Variable | ${1} | | ${duts}= | Get Matches | ${nodes} | DUT* -- 2.16.6