diff options
author | Tibor Frank <tifrank@cisco.com> | 2022-03-01 18:48:49 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2022-03-01 17:51:08 +0000 |
commit | 8a5f25a5aa4ca63e51b444ede870a9d60ce98499 (patch) | |
tree | 78ab0f901f336c27f56b3e7e48d5b1ec0e580968 /resources/tools | |
parent | 48be4720f938a9856ec74deed3f7b0276f414e47 (diff) |
PAL: Add hoststack and vsap to comp tables
Change-Id: Ifa564bc564aa115b07879e939f1ccd4b377647c0
Signed-off-by: Tibor Frank <tifrank@cisco.com>
(cherry picked from commit 0a34eb9b7d4c0449c36edff7a5ab80dce76ce786)
Diffstat (limited to 'resources/tools')
-rw-r--r-- | resources/tools/presentation/generator_tables.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_tables.py b/resources/tools/presentation/generator_tables.py index aa49762d8d..fd33983148 100644 --- a/resources/tools/presentation/generator_tables.py +++ b/resources/tools/presentation/generator_tables.py @@ -1831,8 +1831,8 @@ def table_comparison(table, input_data): include_tests=table[u"include-tests"] ) - if table[u"include-tests"] in (u"NDR", u"PDR") or \ - u"latency" in table[u"include-tests"]: + if table[u"include-tests"] in (u"NDR", u"PDR", u"hoststack", u"vsap") \ + or u"latency" in table[u"include-tests"]: for tst_name, tst_data in col_data[u"data"].items(): if tst_data[u"data"]: tst_data[u"mean"] = mean(tst_data[u"data"]) |