[glib] Some more assertions
- From: Ryan Lortie <ryanl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] Some more assertions
- Date: Thu, 8 Dec 2011 23:12:52 +0000 (UTC)
commit 5718804e5894de7de19d9fb98ae831d60ba001d7
Author: Matthias Clasen <mclasen redhat com>
Date: Mon Nov 28 18:13:16 2011 -0500
Some more assertions
gio/tests/gmenumodel.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
---
diff --git a/gio/tests/gmenumodel.c b/gio/tests/gmenumodel.c
index 12b11e1..9934285 100644
--- a/gio/tests/gmenumodel.c
+++ b/gio/tests/gmenumodel.c
@@ -592,6 +592,7 @@ test_dbus_roundtrip (void)
state.random = random_menu_new (state.rand, TOP_ORDER);
g_menu_model_dbus_export_start (bus, "/", G_MENU_MODEL (state.random), NULL);
+ g_assert (g_menu_model_dbus_export_query (G_MENU_MODEL (state.random), NULL, NULL));
state.proxy = g_menu_proxy_get (bus, g_dbus_connection_get_unique_name (bus), "/");
state.count = 0;
state.success = 0;
@@ -640,6 +641,7 @@ test_dbus_subscriptions (void)
GMenu *menu;
GMenuProxy *proxy;
GMainLoop *loop;
+ GError *error = NULL;
loop = g_main_loop_new (NULL, FALSE);
@@ -647,7 +649,8 @@ test_dbus_subscriptions (void)
menu = g_menu_new ();
- g_menu_model_dbus_export_start (bus, "/", G_MENU_MODEL (menu), NULL);
+ g_menu_model_dbus_export_start (bus, "/", G_MENU_MODEL (menu), &error);
+ g_assert_no_error (error);
proxy = g_menu_proxy_get (bus, g_dbus_connection_get_unique_name (bus), "/");
items_changed_count = 0;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]