X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fbash%2Ffunction%2Fcommon.sh;h=0daa1d31a0a1d4323a258b883108d48601254c32;hp=921b588cc7c73eed114e6c887647306f0ac9e759;hb=refs%2Fchanges%2F00%2F19900%2F2;hpb=3fc1394954fbb06488e81102cc4cd9965ab15a22 diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh index 921b588cc7..0daa1d31a0 100644 --- a/resources/libraries/bash/function/common.sh +++ b/resources/libraries/bash/function/common.sh @@ -660,6 +660,7 @@ function select_tags () { case "${TEST_CODE}" in *"3n-hsw"*) test_tag_array+=("!drv_avf") + test_tag_array+=("!ipsechwNOTnic_intel-xl710") ;; *"2n-skx"*) test_tag_array+=("!ipsechw") @@ -693,7 +694,11 @@ function select_tags () { if [[ "${TEST_CODE}" == "vpp-"* ]]; then # Automatic prefixing for VPP jobs to limit the NIC used and # traffic evaluation to MRR. - prefix="${prefix}mrrAND${DEFAULT_NIC}AND" + if [[ "${TEST_TAG_STRING-}" == *"nic_"* ]]; then + prefix="${prefix}mrrAND" + else + prefix="${prefix}mrrAND${DEFAULT_NIC}AND" + fi fi for tag in "${test_tag_array[@]}"; do if [[ "${tag}" == "!"* ]]; then