aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_tables.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-09-07 13:19:08 +0200
committerTibor Frank <tifrank@cisco.com>2018-09-07 13:59:23 +0200
commit8853921639f749a0e49e37759df2b973947977e3 (patch)
tree95dd1ff67447c6260c65f98275482ebfd32da6ae /resources/tools/presentation/generator_tables.py
parentcd483d75916f280b4a85d0a20772d2653930a192 (diff)
CSIT-1270: Split feature tests in trending
Change-Id: Iecc841737552fea07b7fcf297c478479f7872ae7 Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation/generator_tables.py')
-rw-r--r--resources/tools/presentation/generator_tables.py22
1 files changed, 18 insertions, 4 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index 99069ea630..1bbe8e38d4 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -555,9 +555,15 @@ def _generate_url(base, testbed, test_name):
elif "vhost" in test_name:
if "l2xcbase" in test_name or "l2bdbasemaclrn" in test_name:
file_name = "vm_vhost_l2"
+ if "l2xcbase" in test_name:
+ feature = "-base-l2xc"
+ elif "l2bdbasemaclrn" in test_name:
+ feature = "-base-l2bd"
+ else:
+ feature = "-base"
elif "ip4base" in test_name:
file_name = "vm_vhost_ip4"
- feature = "-base"
+ feature = "-base"
elif "ipsec" in test_name:
file_name = "ipsec"
@@ -571,7 +577,11 @@ def _generate_url(base, testbed, test_name):
file_name = "ip4"
if "xl710" in test_name:
feature = "-base-scale-features"
- elif "acl" in test_name or "snat" in test_name or "cop" in test_name:
+ elif "iacl" in test_name:
+ feature = "-features-iacl"
+ elif "oacl" in test_name:
+ feature = "-features-oacl"
+ elif "snat" in test_name or "cop" in test_name:
feature = "-features"
else:
feature = "-base-scale"
@@ -584,8 +594,12 @@ def _generate_url(base, testbed, test_name):
or "l2bdbasemaclrn" in test_name or "l2bdscale" in test_name \
or "l2dbbasemaclrn" in test_name or "l2dbscale" in test_name:
file_name = "l2"
- if "acl" in test_name:
- feature = "-features"
+ if "macip" in test_name:
+ feature = "-features-macip"
+ elif "iacl" in test_name:
+ feature = "-features-iacl"
+ elif "oacl" in test_name:
+ feature = "-features-oacl"
else:
feature = "-base-scale"