X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;h=14a9d81e778a761f9ea0e0ee41b30f5841cb1177;hp=734477088f8874c89ea943a573e9750e75e27efe;hb=3e5dbfab796da168865ba787382224b1b04b83a4;hpb=ff3201774cf904bad6c64adf11f1fae92d5f8588 diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index 734477088f..14a9d81e77 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -657,10 +657,12 @@ def table_performance_comparison_nic(table, input_data): item.append(round(stdev(data_t) / 1000000, 2)) else: item.extend([None, None]) - if item[-4] is not None and item[-2] is not None and item[-4] != 0: + if "dot1q" in tbl_dict[tst_name]["name"]: + item.append("Changed methodology") + elif item[-4] is not None and item[-2] is not None and item[-4] != 0: item.append(int(relative_change(float(item[-4]), float(item[-2])))) else: - item.append(None) + item.append("n/a") if len(item) == len(header): tbl_lst.append(item)