X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Flibraries%2Fbash%2Ffunction%2Fcommon.sh;h=2075f8fbd1b8dc887d69d0cbd1e9ac492d787af1;hp=1a9089d2199e1e38e0c6f05420363fe9b31737fb;hb=494c42cf77c2571a64854256a68abd7f180cd5d6;hpb=922365bc24a2514d77d15bd58c425044c9eecfef diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh index 1a9089d219..2075f8fbd1 100644 --- a/resources/libraries/bash/function/common.sh +++ b/resources/libraries/bash/function/common.sh @@ -691,10 +691,15 @@ function select_tags () { # We will prefix with perftest to prevent running other tests # (e.g. Functional). prefix="perftestAND" + set +x 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 @@ -706,6 +711,7 @@ function select_tags () { TAGS+=("${prefix}${tag}") fi done + set -x }