summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorStef Walter <stefw@gnome.org>2011-11-12 08:08:12 +0100
committerStef Walter <stefw@collabora.co.uk>2011-11-12 08:08:12 +0100
commit17fade31736bed8509827e4790a96f5933fbd29d (patch)
tree9530646d07d328ec024a63749086a137d07fdbb4 /build
parent09a9d856d2ad87b1a222301537b76c2416d65e0b (diff)
downloadlibsecret-17fade31736bed8509827e4790a96f5933fbd29d.tar.gz
Implement gsecret_service_get_secrets_for_paths() and friends
* Lots of testing, fine tuning and other bits too.
Diffstat (limited to 'build')
-rw-r--r--build/Makefile.am4
-rw-r--r--build/glib.supp16
-rw-r--r--build/unknown.supp9
3 files changed, 27 insertions, 2 deletions
diff --git a/build/Makefile.am b/build/Makefile.am
index 267e822..52eb08c 100644
--- a/build/Makefile.am
+++ b/build/Makefile.am
@@ -9,11 +9,11 @@ SUPPRESSIONS = \
pthread.supp \
unknown.supp
-valgrind-built.supp: $(SUPPRESSIONS)
+valgrind-suppressions: $(SUPPRESSIONS)
$(AM_V_GEN) cat $(SUPPRESSIONS) > $@
EXTRA_DIST = \
$(VALGRIND_CONTRIB) \
$(SUPPRESSIONS)
-all-local: valgrind-built.supp \ No newline at end of file
+all-local: valgrind-suppressions \ No newline at end of file
diff --git a/build/glib.supp b/build/glib.supp
index 8accd45..2da79f1 100644
--- a/build/glib.supp
+++ b/build/glib.supp
@@ -239,6 +239,15 @@
fun:g_test_run_suite
}
{
+ g_test_run_suite__timer_new2
+ Memcheck:Leak
+ ...
+ fun:g_timer_new
+ fun:test_case_run_suite_internal
+ ...
+ fun:g_test_run_suite
+}
+{
g_test_run_suite__strconcat
Memcheck:Leak
...
@@ -301,3 +310,10 @@
...
fun:g_static_mutex_get_mutex_impl
}
+{
+ g_variant_type_info_unref
+ Memcheck:Leak
+ ...
+ fun:g_hash_table_remove
+ fun:g_variant_type_info_unref
+}
diff --git a/build/unknown.supp b/build/unknown.supp
index 862d79a..314570c 100644
--- a/build/unknown.supp
+++ b/build/unknown.supp
@@ -344,3 +344,12 @@
...
fun:gdbus_shared_thread_func
}
+{
+ <insert_a_suppression_name_here>
+ Memcheck:Leak
+ ...
+ fun:g_main_context_add_poll_unlocked
+ ...
+ fun:g_main_loop_run
+ fun:gdbus_shared_thread_func
+}