From 8c2e2aaef7289df6b394faccb4b5ae050e33f43a Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Mon, 9 Nov 2020 13:48:17 +0100 Subject: Trending: Add NAT44 tests Change-Id: I2601a786f58b1d89cc9a90cb16ff20e6331abbfe Signed-off-by: Tibor Frank --- resources/tools/presentation/generator_tables.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'resources/tools/presentation/generator_tables.py') diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 2d4f87fc95..4bee6e343e 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -1046,6 +1046,18 @@ def _generate_url(testbed, test_name): bsf = u"features-oacl10" elif u"oacl50s" in test_name: bsf = u"features-oacl50" + elif u"nat44det" in test_name: + bsf = u"nat44det" + elif u"nat44ed" in test_name and u"udir" in test_name: + bsf = u"nat44ed-udir" + elif u"-cps" in test_name and u"ethip4udp" in test_name: + bsf = u"udp-cps" + elif u"-cps" in test_name and u"ethip4tcp" in test_name: + bsf = u"tcp-cps" + elif u"-pps" in test_name and u"ethip4udp" in test_name: + bsf = u"udp-pps" + elif u"-pps" in test_name and u"ethip4tcp" in test_name: + bsf = u"tcp-pps" elif u"udpsrcscale" in test_name: bsf = u"features-udp" elif u"iacl" in test_name: @@ -1067,6 +1079,8 @@ def _generate_url(testbed, test_name): if u"114b" in test_name and u"vhost" in test_name: domain = u"vts" + elif u"nat44" in test_name or u"-pps" in test_name or u"-vps" in test_name: + domain = u"nat44" elif u"testpmd" in test_name or u"l3fwd" in test_name: domain = u"dpdk" elif u"memif" in test_name: -- cgit 1.2.3-korg