gst.supp: Suppress libtool/gentoo bash complaints
authorEdward Hervey <edward.hervey@collabora.co.uk>
Mon, 20 Dec 2010 16:42:05 +0000 (17:42 +0100)
committerEdward Hervey <edward.hervey@collabora.co.uk>
Mon, 20 Dec 2010 16:42:05 +0000 (17:42 +0100)
Due to gentoo's subtle (not) different libtool behaviour, valgrind
ends up complaining about leaks from the shell. Let's just suppress
any allocations coming from bash.

gst.supp

index 8abfffb..85545e9 100644 (file)
--- a/gst.supp
+++ b/gst.supp
    obj:*/dash
 }
 
+# libtool/gentoo fake leak
+# it actually runs bash and valgrind complains
+{
+   <insert_a_suppression_name_here>
+   Memcheck:Leak
+   fun:*alloc
+   obj:/bin/bash
+}