diff options
Diffstat (limited to 'resources')
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" |