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=0daa1d31a0a1d4323a258b883108d48601254c32;hb=494c42cf77c2571a64854256a68abd7f180cd5d6;hpb=fad4332b24675bbd712fdf22d5295d64fb877029 diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh index 0daa1d31a0..2075f8fbd1 100644 --- a/resources/libraries/bash/function/common.sh +++ b/resources/libraries/bash/function/common.sh @@ -691,6 +691,7 @@ 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. @@ -710,6 +711,7 @@ function select_tags () { TAGS+=("${prefix}${tag}") fi done + set -x }