aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorManuel Bottini <manuel.bottini@arm.com>2020-03-20 14:37:40 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-03-23 10:01:18 +0000
commit569b7e9065d316a6bfbc49fdd95d67ae328cefd3 (patch)
tree1a244f9e688feed9102cf5e391bfa82f9d579329 /scripts
parent6cd1c9bc312b65137da52a973489ba6a0f0180e3 (diff)
downloadComputeLibrary-569b7e9065d316a6bfbc49fdd95d67ae328cefd3.tar.gz
Fix in clang scripts to not report as error the missin arm_compute_verion.embed file
Change-Id: I808cf54f1f0e426f90cf47a9a2e64039d1ad1e2a Signed-off-by: Manuel Bottini <manuel.bottini@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2909 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/clang_tidy_rules.py3
1 files changed, 2 insertions, 1 deletions
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