-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extend LSAN ignore list to ignore anything MPI-lib related
- Loading branch information
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Leak Sanitizer ignore list | ||
# libhf5 is leaky so ignore everything that comes from it | ||
leak:libhdf5 | ||
# mpich is leaky so ignore everything that comes from it | ||
leak:mpich | ||
# MPI related libs are leaky so ignore everything that comes from it | ||
#leak:mpich | ||
leak:libmpi | ||
leak:openmpi | ||
#leak:libhwloc only necessary if LSAN_OPTIONS=fast_unwind_on_malloc=0 is not set | ||
leak:libopen-pal | ||
#leak:libpmix only necessary if LSAN_OPTIONS=fast_unwind_on_malloc=0 is not set | ||
leak:libopen-rte |