From 569b7e9065d316a6bfbc49fdd95d67ae328cefd3 Mon Sep 17 00:00:00 2001 From: Manuel Bottini Date: Fri, 20 Mar 2020 14:37:40 +0000 Subject: Fix in clang scripts to not report as error the missin arm_compute_verion.embed file Change-Id: I808cf54f1f0e426f90cf47a9a2e64039d1ad1e2a Signed-off-by: Manuel Bottini Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2909 Tested-by: Arm Jenkins Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins --- scripts/clang_tidy_rules.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/clang_tidy_rules.py b/scripts/clang_tidy_rules.py index 8d448ad928..a030f211a4 100755 --- a/scripts/clang_tidy_rules.py +++ b/scripts/clang_tidy_rules.py @@ -62,7 +62,8 @@ def filter_clang_tidy_lines( lines ): ("Utils.h" in line and "no member named 'unmap' in 'arm_compute::Tensor'" in line) or ("Utils.h" in line and "no member named 'map' in 'arm_compute::Tensor'" in line) or ("CPUUtils.cpp" in line and "'asm/hwcap.h' file not found" in line) or - "3rdparty" in line): + "3rdparty" in line or + ("'arm_compute_version.embed' file not found" in line) ): print_context=False continue -- cgit v1.2.1