diff options
author | Tibor Frank <tifrank@cisco.com> | 2020-11-09 13:48:17 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2020-11-19 07:23:16 +0000 |
commit | 8c2e2aaef7289df6b394faccb4b5ae050e33f43a (patch) | |
tree | 449763fd43abdff27301be4c8009640d2a5a35e4 /resources/tools/presentation/generator_tables.py | |
parent | 816bfdf912b9530e5038cdd5cbc51f23286c3fe9 (diff) |
Trending: Add NAT44 tests
Change-Id: I2601a786f58b1d89cc9a90cb16ff20e6331abbfe
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.py | 14 |
1 files changed, 14 insertions, 0 deletions
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: |