diff options
author | fanquake <fanquake@gmail.com> | 2020-09-03 11:32:31 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-09-03 11:36:45 +0800 |
commit | 2d4574aad84aa98d39e7777b63d702f59026ca24 (patch) | |
tree | b8b651f913feceaa5b9adfd81b82a6a0c6e40881 | |
parent | c157a50694545090cb1c7e69123fe4709bd5a279 (diff) | |
parent | 9bdde3c802e1512cbcd8ae8f7db72b6fe13ea829 (diff) |
Merge #19861: build: add /usr/local/ to LCOV_FILTER_PATTERN for macOS builds
9bdde3c802e1512cbcd8ae8f7db72b6fe13ea829 build: add /usr/local/ to LCOV_FILTER_PATTERN for macOS builds (eugene)
Pull request description:
With this commit, the files in /usr/local/ will not be included in
`make cov` or `make cov_fuzz` coverage reports. This behavior could
be observed when generating the reports on macOS with brew-installed
clang.
ACKs for top commit:
fanquake:
ACK 9bdde3c802e1512cbcd8ae8f7db72b6fe13ea829
Tree-SHA512: 15cbe8d514651448f3d7b8b0a00939fd6bd6f15e6812f1959fcaaab7364ca2ef4ee34f2ff8950b7fdc8ae64d043dc5f7185c0601dd94780b41331337e5e84c45
-rw-r--r-- | Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 1d6358b1d5..8cdd3ff647 100644 --- a/Makefile.am +++ b/Makefile.am @@ -181,6 +181,7 @@ $(BITCOIN_WALLET_BIN): FORCE if USE_LCOV LCOV_FILTER_PATTERN = \ + -p "/usr/local/" \ -p "/usr/include/" \ -p "/usr/lib/" \ -p "/usr/lib64/" \ |