diff options
author | Tibor Frank <tifrank@cisco.com> | 2021-11-15 07:32:54 +0100 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2021-11-15 06:39:59 +0000 |
commit | 4fe79992116db330e2d2b6aca66b55e06f6127df (patch) | |
tree | 37fa50449a456936dadb0f0acab12d338bfeec72 /resources/tools | |
parent | ba3d0db9e169b5a8abc9ee5d5df0a45a12b2899c (diff) |
Report: Add data
Change-Id: Ie384ab9db8f3ba909ec0b6eaf39a04c5c7f3157a
Signed-off-by: Tibor Frank <tifrank@cisco.com>
(cherry picked from commit 40ece2a4354f2dcc4af2928ab45762ccc22625e7)
Diffstat (limited to 'resources/tools')
3 files changed, 6 insertions, 4 deletions
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" |