From: Olivier Andrieu Date: Tue, 13 Apr 2004 22:29:50 +0000 (+0000) Subject: 2004-04-14 Olivier Andrieu X-Git-Tag: dbus-0.22~104 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=61b294f1a9e41c68486bc9340cd42d94224a4080;p=thirdparty%2Fdbus.git 2004-04-14 Olivier Andrieu * test/glib/test-dbus-glib.c (timed_exit): fail the test after a few seconds. --- diff --git a/ChangeLog b/ChangeLog index 97594d893..e306348b9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-04-14 Olivier Andrieu + + * test/glib/test-dbus-glib.c (timed_exit): fail the test after + a few seconds. + 2004-04-13 Michael Meeks * glib/dbus-gobject.c (handle_introspect): split out diff --git a/test/glib/test-dbus-glib.c b/test/glib/test-dbus-glib.c index 5cb312353..ed94afae6 100644 --- a/test/glib/test-dbus-glib.c +++ b/test/glib/test-dbus-glib.c @@ -7,6 +7,13 @@ static GMainLoop *loop = NULL; static int n_times_foo_received = 0; +static gboolean +timed_exit (gpointer loop) +{ + g_main_loop_quit (loop); + return TRUE; +} + static void foo_signal_handler (DBusGProxy *proxy, DBusMessage *signal, @@ -200,6 +207,8 @@ main (int argc, char **argv) dbus_connection_flush (connection); + g_timeout_add (5000, timed_exit, loop); + g_main_loop_run (loop); if (n_times_foo_received != 1)