From c657583832cbf675516a105c1f7bbc6bebea6e34 Mon Sep 17 00:00:00 2001 From: Xavier Claessens Date: Fri, 21 Sep 2007 12:24:24 +0000 Subject: Fix warnings when finalizing. 2007-09-21 Xavier Claessens * libempathy/empathy-tp-contact-list.c: Fix warnings when finalizing. * tests/contact-manager.c: * tests/Makefile.am: * configure.ac: * Makefile.am: Add a test program to track leaks. svn path=/trunk/; revision=304 --- tests/Makefile.am | 15 +++++++++++++++ tests/contact-manager.c | 30 ++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 tests/Makefile.am create mode 100644 tests/contact-manager.c (limited to 'tests') diff --git a/tests/Makefile.am b/tests/Makefile.am new file mode 100644 index 000000000..16358591d --- /dev/null +++ b/tests/Makefile.am @@ -0,0 +1,15 @@ +AM_CPPFLAGS = \ + -I$(top_srcdir) \ + $(EMPATHY_CFLAGS) \ + $(WARN_CFLAGS) + +LDADD = \ + $(top_builddir)/libempathy-gtk/libempathy-gtk.la \ + $(top_builddir)/libempathy/libempathy.la \ + $(EMPATHY_LIBS) + +noinst_PROGRAMS = \ + contact-manager + +contact_manager_SOURCES = contact-manager.c + diff --git a/tests/contact-manager.c b/tests/contact-manager.c new file mode 100644 index 000000000..c9450105a --- /dev/null +++ b/tests/contact-manager.c @@ -0,0 +1,30 @@ +#include + +#include +#include + +static gboolean +time_out (gpointer data) +{ + gtk_main_quit (); + + return FALSE; +} + +int +main (int argc, char **argv) +{ + EmpathyContactManager *manager; + + gtk_init (&argc, &argv); + + manager = empathy_contact_manager_new (); + + g_timeout_add (5000, time_out, NULL); + + gtk_main (); + + g_object_unref (manager); + + return EXIT_SUCCESS; +} -- cgit