From 61b294f1a9e41c68486bc9340cd42d94224a4080 Mon Sep 17 00:00:00 2001 From: Olivier Andrieu Date: Tue, 13 Apr 2004 22:29:50 +0000 Subject: 2004-04-14 Olivier Andrieu * test/glib/test-dbus-glib.c (timed_exit): fail the test after a few seconds. --- ChangeLog | 5 +++++ test/glib/test-dbus-glib.c | 9 +++++++++ 2 files changed, 14 insertions(+) diff --git a/ChangeLog b/ChangeLog index 97594d89..e306348b 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 5cb31235..ed94afae 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) -- cgit