Skip to content

Commit

Permalink
Suppress more leaks related to unclean protobuf shutdown
Browse files Browse the repository at this point in the history
  • Loading branch information
msepga committed Dec 22, 2023
1 parent bb29f63 commit 8a20069
Showing 1 changed file with 38 additions and 2 deletions.
40 changes: 38 additions & 2 deletions test/valgrind.supp
Original file line number Diff line number Diff line change
@@ -1,7 +1,43 @@
{
google_protobuf_cpp_unclean_shutdown
Memcheck:Leak
match-leak-kinds: reachable
match-leak-kinds: reachable,possible
...
fun:*google*protobuf*
}
}

{
google_protobuf_cpp_unclean_shutdown_abseil
Memcheck:Leak
match-leak-kinds: possible
...
fun:*absl*
}

{
abseil_deadlock_check_uninit_cond
Memcheck:Cond
...
fun:*UnwindImpl*
...
fun:*absl*GetStackTrace*
...
fun:*absl*DeadlockCheck*
...
fun:*absl*Mutex*Lock*
...
}

{
abseil_deadlock_check_value8
Memcheck:Value8
...
fun:*UnwindImpl*
...
fun:*absl*GetStackTrace*
...
fun:*absl*DeadlockCheck*
...
fun:*absl*Mutex*Lock*
...
}

0 comments on commit 8a20069

Please sign in to comment.