diff options
author | Tibor Frank <tifrank@cisco.com> | 2022-01-27 12:01:09 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2022-01-31 09:21:19 +0000 |
commit | 3d629c4e670186a8506bfd9f50c85453c4fa7acd (patch) | |
tree | bbdabaf1ba17bf0a7033353aecf366ace5a1da2f /resources/tools/presentation/generator_tables.py | |
parent | bf69fff6b3ce85162dc698b64ab15806889169cc (diff) |
Trending: Add 2n-icx
Change-Id: I2d71c557f6b3c4d93466c096c9d5c0fabc36f486
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 | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 2e7d3dee36..a7b1500f29 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -1135,17 +1135,20 @@ def _generate_url(testbed, test_name): 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", u"2n-aws", u"3n-aws")): + (u"2n-icx", u"3n-icx", 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", u"2n-aws", u"3n-aws")): + (u"2n-icx", u"3n-icx", 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", u"2n-aws", u"3n-aws")): + (u"2n-icx", u"3n-icx", u"2n-skx", u"3n-skx", u"2n-clx", u"2n-zn2", + u"2n-aws", u"3n-aws")): cores = u"8t4c" else: cores = u"" |