diff options
author | Tibor Frank <tifrank@cisco.com> | 2021-09-27 15:14:32 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2021-09-27 13:16:59 +0000 |
commit | 7d8e405c375ef55b392dea260db6628b92678338 (patch) | |
tree | f2ec45af9ff1e68c3aa3387fd1756b56b13548d0 /resources/tools/presentation/generator_tables.py | |
parent | 1dc2d1ad19ffad4d447d2ab620307a808c8d8dfa (diff) |
Trending: Add aws test beds
Change-Id: I0536d346277431e988155ca17e5891b9068cc074
Signed-off-by: Tibor Frank <tifrank@cisco.com>
(cherry picked from commit c98f749024b1f42d0065a16ac1ee904a4c9ca704)
Diffstat (limited to 'resources/tools/presentation/generator_tables.py')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 1e1307b5bc..a995711bcb 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -1111,6 +1111,8 @@ def _generate_url(testbed, test_name): nic = u"x553" elif u"cx556" in test_name or u"cx556a" in test_name: nic = u"cx556a" + elif u"ena" in test_name: + nic = u"nitro50g" else: nic = u"" @@ -1143,15 +1145,18 @@ def _generate_url(testbed, test_name): cores = u"4t4c" elif u"2t1c" in test_name or \ (u"-1c-" in test_name and - testbed in (u"2n-skx", u"3n-skx", u"2n-clx", u"2n-zn2")): + testbed in + (u"2n-skx", u"3n-skx", u"2n-clx", u"2n-zn2", u"2n-aws", u"3n-aws")): cores = u"2t1c" elif u"4t2c" in test_name or \ (u"-2c-" in test_name and - testbed in (u"2n-skx", u"3n-skx", u"2n-clx", u"2n-zn2")): + testbed in + (u"2n-skx", u"3n-skx", u"2n-clx", u"2n-zn2", u"2n-aws", u"3n-aws")): cores = u"4t2c" elif u"8t4c" in test_name or \ (u"-4c-" in test_name and - testbed in (u"2n-skx", u"3n-skx", u"2n-clx", u"2n-zn2")): + testbed in + (u"2n-skx", u"3n-skx", u"2n-clx", u"2n-zn2", u"2n-aws", u"3n-aws")): cores = u"8t4c" else: cores = u"" @@ -1166,6 +1171,8 @@ def _generate_url(testbed, test_name): driver = u"rdma" elif u"dnv" in testbed or u"tsh" in testbed: driver = u"ixgbe" + elif u"ena" in test_name: + driver = u"ena" else: driver = u"dpdk" |