aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/bash/function/common.sh
diff options
context:
space:
mode:
authorPeter Mikus <pmikus@cisco.com>2020-03-12 12:23:18 +0000
committerPeter Mikus <pmikus@cisco.com>2020-03-12 14:07:22 +0000
commit048a9ca3484a06e54f48dc80e7ab24dbfebe406f (patch)
tree2936cab9365802a14d99c61fd4f82c86f26383c1 /resources/libraries/bash/function/common.sh
parentd7aec8ee052468f55e2e9bd27de1dedd918c8a37 (diff)
LTS: Performance testing
Change-Id: I06dfa929402b05ff8cbd8720b51059bf3df7e35c Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources/libraries/bash/function/common.sh')
-rw-r--r--resources/libraries/bash/function/common.sh11
1 files changed, 11 insertions, 0 deletions
diff --git a/resources/libraries/bash/function/common.sh b/resources/libraries/bash/function/common.sh
index a03e90422c..9e67f9cbf5 100644
--- a/resources/libraries/bash/function/common.sh
+++ b/resources/libraries/bash/function/common.sh
@@ -459,6 +459,10 @@ function get_test_code () {
NODENESS="1n"
FLAVOR="tx2"
;;
+ *"2n-clx"*)
+ NODENESS="2n"
+ FLAVOR="clx"
+ ;;
*"2n-skx"*)
NODENESS="2n"
FLAVOR="skx"
@@ -806,6 +810,9 @@ function select_tags () {
# - ipsechw - Blacklisted on testbeds without crypto hardware accelerator.
# TODO: Add missing reasons here (if general) or where used (if specific).
case "${TEST_CODE}" in
+ *"2n-clx"*)
+ test_tag_array+=("!ipsechw")
+ ;;
*"2n-skx"*)
test_tag_array+=("!ipsechw")
;;
@@ -911,6 +918,10 @@ function select_topology () {
TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*vpp_device*.template )
TOPOLOGIES_TAGS="2_node_single_link_topo"
;;
+ "2n_clx")
+ TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*2n_clx*.yaml )
+ TOPOLOGIES_TAGS="2_node_*_link_topo"
+ ;;
"2n_skx")
TOPOLOGIES=( "${TOPOLOGIES_DIR}"/*2n_skx*.yaml )
TOPOLOGIES_TAGS="2_node_*_link_topo"