aboutsummaryrefslogtreecommitdiffstats
path: root/tests/contact-manager.c
blob: 31a6012498b66dca9b6ab2b6c2ef799bec13a625 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <stdlib.h>

#include <glib.h>
#include <libempathy/empathy-contact-manager.h>
#include <libempathy/empathy-debug.h>


static gboolean
time_out (gpointer main_loop)
{
    g_main_loop_quit (main_loop);

    return FALSE;
}

int
main (int argc, char **argv)
{
    EmpathyContactManager *manager;
    GMainLoop             *main_loop;

    g_type_init ();

    empathy_debug_set_flags (g_getenv ("EMPATHY_DEBUG"));
    main_loop = g_main_loop_new (NULL, FALSE);
    manager = empathy_contact_manager_new ();

    g_timeout_add_seconds (5, time_out, main_loop);

    g_main_loop_run (main_loop);

    g_object_unref (manager);
    g_main_loop_unref (main_loop);

    return EXIT_SUCCESS;
}