blob: 405f96620b5c43416309fcf833d736f4d10df586 [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 = [
Fathi Boudra8da12672020-12-17 15:47:18 +010018 ("platform/ext/.*", "3rd party libraries will not be fixed"),
Leonardo Sandoval46b32092020-12-03 12:26:17 -060019 ("lib/ext/.*", "3rd party libraries will not be fixed"),
20]