Skip to content

Commit 3bf8025

Browse files
valgrind.supp: new, valgrind exclusions for dlopen().
This also works on github's Linux machine. More recent versions of valgrind might avoid these false-positives.
1 parent 87dfb12 commit 3bf8025

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

valgrind.supp

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Valgrind suppression for false-positives from use of shared-libraries.
2+
#
3+
{
4+
sharedlibrary-read
5+
Memcheck:Addr8
6+
fun:strncmp
7+
fun:is_dst
8+
...
9+
fun:fillin_rpath.isra.0
10+
fun:decompose_rpath
11+
...
12+
fun:openaux
13+
fun:_dl_catch_exception
14+
fun:_dl_map_object_deps
15+
fun:dl_open_worker_begin
16+
fun:_dl_catch_exception
17+
}

0 commit comments

Comments
 (0)