1 /* GLib testing framework examples and tests
3 * Copyright (C) 2008-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 * Author: David Zeuthen <davidz@redhat.com>
32 c = g_bus_get_sync (G_BUS_TYPE_SESSION,
33 NULL, /* GCancellable* */
35 g_assert_no_error (error);
38 g_dbus_connection_emit_signal (c,
39 NULL, /* const gchar *destination_bus_name */
40 "/org/gtk/GDBus/FlushObject",
41 "org.gtk.GDBus.FlushInterface",
43 NULL, /* GVariant *parameters */
45 g_assert_no_error (error);
48 ret = g_dbus_connection_flush_sync (c,
49 NULL, /* GCancellable* */
51 g_assert_no_error (error);
54 /* and now exit immediately! */