tools: Add *error*.cpp to allowed build lines

This commit is contained in:
Jiacheng Guo 2021-04-16 19:52:56 +08:00
parent fa72ef6bd8
commit 4253d9ee49
2 changed files with 4 additions and 2 deletions

View File

@ -24,6 +24,9 @@ IGNORE_WARNS = [
re.compile(r_str) for r_str in [
r'library/error\.o',
r'.*error.*\.c\.obj',
r'.*error.*\.cpp\.obj',
r'.*error.*\.cxx\.obj',
r'.*error.*\.cc\.obj',
r'-Werror',
r'error\.d',
r'reassigning to symbol',
@ -49,7 +52,7 @@ def line_has_warnings(line): # type: (str) -> bool
return has_warnings
def main():
def main(): # type: () -> None
parser = argparse.ArgumentParser(description='ESP-IDF app builder')
parser.add_argument(
'-v',

View File

@ -156,7 +156,6 @@ tools/ble/lib_gatt.py
tools/check_python_dependencies.py
tools/check_term.py
tools/ci/check_artifacts_expire_time.py
tools/ci/check_build_warnings.py
tools/ci/check_callgraph.py
tools/ci/check_codeowners.py
tools/ci/check_deprecated_kconfigs.py