aboutsummaryrefslogtreecommitdiffstats
path: root/resources/tools/presentation/generator_tables.py
diff options
context:
space:
mode:
authorTibor Frank <tifrank@cisco.com>2018-08-07 10:14:03 +0200
committerTibor Frank <tifrank@cisco.com>2018-08-07 15:21:10 +0200
commit5a2c06dc4e1d3395082b6afef657453cb5bab18d (patch)
tree282699d2bde67d8af69969252183b837e6fd8d50 /resources/tools/presentation/generator_tables.py
parent8c34e2945809ce12dd2795bb4e76c2a6b30e1be7 (diff)
CSIT-1208: Add new data to 1807 report
Change-Id: I242b96ef4fafd53745ea1900ac63b95024dccb0b 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.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py
index fccfd9299a..9e80d1b345 100644
--- a/resources/tools/presentation/generator_tables.py
+++ b/resources/tools/presentation/generator_tables.py
@@ -241,6 +241,11 @@ def table_performance_comparison(table, input_data):
name = "{0}-{1}".format(tst_data["parent"].split("-")[0],
"-".join(tst_data["name"].
split("-")[:-1]))
+ if "comparison across testbeds" in table["title"].lower():
+ name = name.\
+ replace("1t1c", "1c").replace("2t1c", "1c").\
+ replace("2t2c", "2c").replace("4t2c", "2c").\
+ replace("4t4c", "4c").replace("8t4c", "4c")
tbl_dict[tst_name_mod] = {"name": name,
"ref-data": list(),
"cmp-data": list()}