diff options
author | Xavier Claessens <xclaesse@gmail.com> | 2007-09-21 20:24:24 +0800 |
---|---|---|
committer | Xavier Claessens <xclaesse@src.gnome.org> | 2007-09-21 20:24:24 +0800 |
commit | c657583832cbf675516a105c1f7bbc6bebea6e34 (patch) | |
tree | 01e1aca50b42a38943ae09f8fd327aba2f8af118 /tests/contact-manager.c | |
parent | 004e5e331b89484f2448ab81d0e97cfc3b47af18 (diff) | |
download | gsoc2013-empathy-c657583832cbf675516a105c1f7bbc6bebea6e34.tar gsoc2013-empathy-c657583832cbf675516a105c1f7bbc6bebea6e34.tar.gz gsoc2013-empathy-c657583832cbf675516a105c1f7bbc6bebea6e34.tar.bz2 gsoc2013-empathy-c657583832cbf675516a105c1f7bbc6bebea6e34.tar.lz gsoc2013-empathy-c657583832cbf675516a105c1f7bbc6bebea6e34.tar.xz gsoc2013-empathy-c657583832cbf675516a105c1f7bbc6bebea6e34.tar.zst gsoc2013-empathy-c657583832cbf675516a105c1f7bbc6bebea6e34.zip |
Fix warnings when finalizing.
2007-09-21 Xavier Claessens <xclaesse@gmail.com>
* 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
Diffstat (limited to 'tests/contact-manager.c')
-rw-r--r-- | tests/contact-manager.c | 30 |
1 files changed, 30 insertions, 0 deletions
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 <stdlib.h> + +#include <gtk/gtk.h> +#include <libempathy/empathy-contact-manager.h> + +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; +} |