From 40ece2a4354f2dcc4af2928ab45762ccc22625e7 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Mon, 15 Nov 2021 07:32:54 +0100 Subject: [PATCH] Report: Add data Change-Id: Ie384ab9db8f3ba909ec0b6eaf39a04c5c7f3157a Signed-off-by: Tibor Frank --- docs/report/introduction/report_history.rst | 7 ++++--- resources/tools/presentation/input_data_parser.py | 6 +++--- resources/tools/presentation/specifications/report/data_sets.yaml | 2 ++ resources/tools/presentation/specifications/report/elements.yaml | 2 +- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/docs/report/introduction/report_history.rst b/docs/report/introduction/report_history.rst index 61028c23bc..de39fbd5e5 100644 --- a/docs/report/introduction/report_history.rst +++ b/docs/report/introduction/report_history.rst @@ -8,12 +8,13 @@ below. | .[ww] Revision | Changes | +================+============================================================+ | .46 | 1. Added coverage data for 2n-tx2 and 2n-zn2. | -| | 2. Added 4t2c tests for 2n-aws and 3n-aws in | +| | 2. Added 2n-zn2 runs of 2106.rel retested in CSIT.2110 | +| | environment. | +| | 3. Added 4t2c tests for 2n-aws and 3n-aws in | | | :ref:`VPP_Packet_Throughput`. | -| | 3. Added DPDK :ref: `dpdk_throughput_speedup_multi_core` | +| | 4. Added DPDK :ref: `dpdk_throughput_speedup_multi_core` | | | graphs. | | | | -| | | +----------------+------------------------------------------------------------+ | .45 | Initial revision | +----------------+------------------------------------------------------------+ diff --git a/resources/tools/presentation/input_data_parser.py b/resources/tools/presentation/input_data_parser.py index 4fdc7e3353..89b8eee68f 100644 --- a/resources/tools/presentation/input_data_parser.py +++ b/resources/tools/presentation/input_data_parser.py @@ -520,11 +520,11 @@ class ExecutionChecker(ResultVisitor): return hdr_lat hdr_lat = ( - in_list_1[0], in_list_1[1], in_list_1[2], - in_list_2[0], in_list_2[1], in_list_2[2] + int(in_list_1[0]), int(in_list_1[1]), int(in_list_1[2]), + int(in_list_2[0]), int(in_list_2[1]), int(in_list_2[2]) ) for item in hdr_lat: - if item in (u"-1", u"4294967295", u"0"): + if item in (-1, 4294967295, 0): return None return hdr_lat diff --git a/resources/tools/presentation/specifications/report/data_sets.yaml b/resources/tools/presentation/specifications/report/data_sets.yaml index 03877a73b3..a2bb529cab 100644 --- a/resources/tools/presentation/specifications/report/data_sets.yaml +++ b/resources/tools/presentation/specifications/report/data_sets.yaml @@ -501,6 +501,8 @@ - 28 # rls2106.rel NDRPDR iter env 8 - 31 # rls2106.rel NDRPDR iter env 8 - 32 # rls2106.rel NDRPDR iter env 8 + # - 54 # rls2106.rel NDRPDR iter env 8 + - 55 # rls2106.rel NDRPDR iter env 8 vpp-2n-zn2-curr-iter: csit-vpp-perf-report-iterative-2110-2n-zn2: diff --git a/resources/tools/presentation/specifications/report/elements.yaml b/resources/tools/presentation/specifications/report/elements.yaml index 4f03293601..9c13e12e8f 100644 --- a/resources/tools/presentation/specifications/report/elements.yaml +++ b/resources/tools/presentation/specifications/report/elements.yaml @@ -377,7 +377,7 @@ build: "36" - job-spec: "crypto-02" build: "37" -# - job-spec: "crypto-03" +# - job-spec: "crypto-03" # Completly failed # build: "38" - job-spec: "crypto-04" build: "39" -- 2.16.6