From 8bc3a1425ee60cc5035923e355373afb4d78e225 Mon Sep 17 00:00:00 2001 From: pmikus Date: Thu, 2 Feb 2023 11:58:59 +0000 Subject: fix(job_spec): Naming conventions Signed-off-by: pmikus Change-Id: Iccaa4f8945e5eb48272737338a52c9edbf1cb58b --- resources/libraries/bash/function/common.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'resources/libraries/bash') diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh index 5b947b75b7..3c5533b209 100644 --- a/resources/libraries/bash/function/common.sh +++ b/resources/libraries/bash/function/common.sh @@ -898,9 +898,15 @@ function select_tags () { awk {"$awk_nics_sub_cmd"} || echo "devicetest") || die SELECTION_MODE="--test" ;; + *"hoststack-daily"* ) + readarray -t test_tag_array <<< $(grep -v "#" \ + ${tfd}/hoststack_daily/${DUT}-${NODENESS}-${FLAVOR}.md | + awk {"$awk_nics_sub_cmd"} || echo "perftest") || die + SELECTION_MODE="--test" + ;; *"ndrpdr-weekly"* ) readarray -t test_tag_array <<< $(grep -v "#" \ - ${tfd}/mlr_weekly/${DUT}-${NODENESS}-${FLAVOR}.md | + ${tfd}/ndrpdr_weekly/${DUT}-${NODENESS}-${FLAVOR}.md | awk {"$awk_nics_sub_cmd"} || echo "perftest") || die SELECTION_MODE="--test" ;; -- cgit 1.2.3-korg