diff options
author | Guy Harris <gharris@sonic.net> | 2022-01-19 22:24:05 -0800 |
---|---|---|
committer | Guy Harris <gharris@sonic.net> | 2022-01-19 22:24:05 -0800 |
commit | 9c3cb1090fc068d7e35057324a29685363ebb0e8 (patch) | |
tree | 6d762f99657aa1f269b0ae15e48575683d94f3bf /build_matrix.sh | |
parent | 7f1edf5d70cb34a47f98e0186eacfede76a44372 (diff) |
CI: suppress leak warnings about still-reachable memory.
Diffstat (limited to 'build_matrix.sh')
-rwxr-xr-x | build_matrix.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_matrix.sh b/build_matrix.sh index 3275c5f0..2d9c7ba4 100755 --- a/build_matrix.sh +++ b/build_matrix.sh @@ -29,7 +29,7 @@ fi COUNT=0 export LIBPCAP_TAINTED if command -v valgrind >/dev/null 2>&1; then - VALGRIND_CMD="valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1" + VALGRIND_CMD="valgrind --leak-check=full --show-reachable=no --error-exitcode=1" export VALGRIND_CMD fi |