util: Add valgrind suppressions and a helper script
parent
cd7594320b
commit
3be37d24bd
|
@ -0,0 +1,6 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
valgrind --leak-check=full \
|
||||||
|
--show-leak-kinds=all \
|
||||||
|
--suppressions=util/valgrind.supp \
|
||||||
|
$@
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
Ignore dlopen bug.
|
||||||
|
Memcheck:Leak
|
||||||
|
...
|
||||||
|
fun:_dl_*
|
||||||
|
...
|
||||||
|
}
|
Loading…
Reference in New Issue