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. --- test/glib/test-dbus-glib.c | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/glib/test-dbus-glib.c') 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