test: add valgrind suppressions
authorThomas Haller <thaller@redhat.com>
Tue, 18 Feb 2014 19:33:10 +0000 (20:33 +0100)
committerThomas Haller <thaller@redhat.com>
Tue, 18 Feb 2014 19:33:10 +0000 (20:33 +0100)
`make check` failed on fc20.armv7hl

Signed-off-by: Thomas Haller <thaller@redhat.com>
valgrind.suppressions

index 369d7a4..c418b4b 100644 (file)
     ...
 }
 
+
+# The following suppressions were needed on fc20.armv7hl
+{
+   _fun_malloc
+   Memcheck:Leak
+   match-leak-kinds: possible
+   fun:malloc
+}
+{
+   _fun_realloc
+   Memcheck:Leak
+   match-leak-kinds: possible
+   fun:realloc
+}
+{
+   _fun_calloc
+   Memcheck:Leak
+   match-leak-kinds: possible
+   fun:calloc
+}