blob: 2edc324f9cc684c391339b7dcfb51a3904ed69bb [file] [log] [blame]
Leonardo Sandovald05adab2020-08-10 14:01:54 -05001#
2# Copyright (c) 2019-2020, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
7#
8# This file lists the source files that are expected to be excluded from
9# Coverity's analysis, and the reason why.
10#
11
12# The expected format is an array of tuples (filename_pattern, description).
13# - filename_pattern is a Python regular expression (as in the 're' module)
14# describing the file(s) to exclude.
15# - description aims at providing the reason why the files are expected
16# to be excluded.
Leonardo Sandoval46b32092020-12-03 12:26:17 -060017exclude_paths = [
18 ("platform/ext/.*", "3rd party libraries will not be fixed")
19 ("lib/ext/.*", "3rd party libraries will not be fixed"),
20]