aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_tables.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2021-02-24 09:41:10 +0100
committerTibor Frank <tifrank@cisco.com>2021-02-24 08:43:37 +0000
commitf09bb3c762b41873943f5f3211bf68f66ce3fcf6 (patch)
treeee12d93a65d841a29aaf8825234aa6b90b827635 /resources/tools/presentation/generator_tables.py
parent1d5c4cbf4f4ab1cba438b1b6d132eef5cdb59ae4 (diff)
Trending: Add nat44-tput tests
Change-Id: I0e670cfa4e0125856944656536f0d64d04bdbb6d Signed-off-by: Tibor Frank <tifrank@cisco.com> (cherry picked from commit 0e86d278980b7ebde05047d356bbdd37c13f70d6)
Diffstat (limited to 'resources/tools/presentation/generator_tables.py')
-rw-r--r--resources/tools/presentation/generator_tables.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index 083f5b060c..798c126727 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -1058,6 +1058,10 @@ def _generate_url(testbed, test_name):
bsf = u"udp-pps"
elif u"-pps" in test_name and u"ethip4tcp" in test_name:
bsf = u"tcp-pps"
+ elif u"-tput" in test_name and u"ethip4udp" in test_name:
+ bsf = u"udp-tput"
+ elif u"-tput" in test_name and u"ethip4tcp" in test_name:
+ bsf = u"tcp-tput"
elif u"udpsrcscale" in test_name:
bsf = u"features-udp"
elif u"iacl" in test_name:
@@ -1097,6 +1101,8 @@ def _generate_url(testbed, test_name):
domain += u"-cps"
elif u"-pps" in test_name:
domain += u"-pps"
+ elif u"-tput" in test_name:
+ domain += u"-tput"
elif u"testpmd" in test_name or u"l3fwd" in test_name:
domain = u"dpdk"
elif u"memif" in test_name: