X-Git-Url: https://gerrit.fd.io/r/gitweb?p=csit.git;a=blobdiff_plain;f=resources%2Ftools%2Fpresentation%2Fgenerator_tables.py;h=c26675e7dd27ec2cf7b60d0e2023a00270067b83;hp=ffb4f1a40d6007a3c0f6f0aec108ec1e93276387;hb=bf05994fbf8308bb2482c494a2b28949837fcc6f;hpb=d20e76a2bbed8ba639666947710db71339c35833 diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index ffb4f1a40d..c26675e7dd 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)