Report: Meltdown/Spectre disabled
[csit.git] / resources / tools / presentation / generator_tables.py
index 58d7426..65917bd 100644 (file)
@@ -194,10 +194,10 @@ def table_performance_improvements(table, input_data):
         line_lst = list()
         for item in data:
             if isinstance(item["data"], str):
-                line_lst.append(item["data"])
                 # Remove -?drdisc from the end
                 if item["data"].endswith("drdisc"):
                     item["data"] = item["data"][:-8]
+                line_lst.append(item["data"])
             elif isinstance(item["data"], float):
                 line_lst.append("{:.1f}".format(item["data"]))
             elif item["data"] is None:
@@ -353,7 +353,6 @@ def table_performance_comparison(table, input_data):
 
     # Transform the data
     data = input_data.filter_data(table)
-    logging.info(data)
 
     # Prepare the header of the tables
     try:
@@ -386,7 +385,6 @@ def table_performance_comparison(table, input_data):
                         append(tst_data["throughput"]["value"])
                 except TypeError:
                     pass  # No data in output.xml for this test
-    logging.info(pformat(tbl_dict))
 
     for job, builds in table["compare"]["data"].items():
         for build in builds: