mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-06 13:45:00 +00:00
coverage.sh: Inline exclusion patterns (for upcoming change)
This commit is contained in:
parent
0a0418faf8
commit
230b490cbf
1 changed files with 6 additions and 3 deletions
|
@ -230,9 +230,12 @@ _merge_coverage_info() {
|
|||
|
||||
_clean_coverage_info() {
|
||||
local coverage_dir="$1"
|
||||
local dir
|
||||
for dir in CMakeFiles examples tests ; do
|
||||
local pattern="*/${dir}/*"
|
||||
local pattern
|
||||
for pattern in \
|
||||
'*/CMakeFiles/*' \
|
||||
'*/examples/*' \
|
||||
'*/tests/*' \
|
||||
; do
|
||||
(
|
||||
set -x
|
||||
lcov -q -o "${coverage_dir}/${coverage_info}" -r "${coverage_dir}/${coverage_info}" "${pattern}"
|
||||
|
|
Loading…
Add table
Reference in a new issue