From 9c9838f2294a630c03cdc0fb82f58c34522742e9 Mon Sep 17 00:00:00 2001 From: Jiacheng Guo Date: Tue, 20 Apr 2021 17:25:00 +0800 Subject: [PATCH] tools: Add /*error*.o and /*error*.d to allowed build lines --- tools/ci/check_build_warnings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/ci/check_build_warnings.py b/tools/ci/check_build_warnings.py index 93748102d69..357f857bb67 100755 --- a/tools/ci/check_build_warnings.py +++ b/tools/ci/check_build_warnings.py @@ -23,12 +23,14 @@ IGNORE_WARNS = [ re.compile(r_str) for r_str in [ r'library/error\.o', + r'/.*error\S*\.o', r'.*error.*\.c\.obj', r'.*error.*\.cpp\.obj', r'.*error.*\.cxx\.obj', r'.*error.*\.cc\.obj', r'-Werror', r'error\.d', + r'/.*error\S*.d', r'reassigning to symbol', r'changes choice state', r'crosstool_version_check\.cmake',