aboutsummaryrefslogtreecommitdiff
path: root/tests/test-json-server.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2012-03-28 23:13:48 -0500
committerTed Gould <ted@gould.cx>2012-03-28 23:13:48 -0500
commit7d376ec5570f6732f90a52e7fc448285c80c5ddb (patch)
treeaf6825efa11c5dc6e21ab05c05f53e2a7ac25939 /tests/test-json-server.c
parent568e60e182a267ccc375c56e39aa9de21d0bcbcb (diff)
downloadlibdbusmenu-7d376ec5570f6732f90a52e7fc448285c80c5ddb.tar.gz
libdbusmenu-7d376ec5570f6732f90a52e7fc448285c80c5ddb.tar.bz2
libdbusmenu-7d376ec5570f6732f90a52e7fc448285c80c5ddb.zip
Making the json test signal based instead of timeout based
Diffstat (limited to 'tests/test-json-server.c')
-rw-r--r--tests/test-json-server.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test-json-server.c b/tests/test-json-server.c
index 6a53aec..7165838 100644
--- a/tests/test-json-server.c
+++ b/tests/test-json-server.c
@@ -30,14 +30,14 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
static GMainLoop * mainloop = NULL;
-static gboolean
-timer_func (gpointer data)
+static void
+root_activate (void)
{
g_debug("Dumping callgrind data");
CALLGRIND_DUMP_STATS_AT("exported");
CALLGRIND_STOP_INSTRUMENTATION;
g_main_loop_quit(mainloop);
- return FALSE;
+ return;
}
static void
@@ -54,14 +54,14 @@ on_bus (GDBusConnection * connection, const gchar * name, gpointer user_data)
return;
}
+ g_signal_connect(G_OBJECT(root), DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, G_CALLBACK(root_activate), NULL);
+
g_debug("Starting Callgrind");
CALLGRIND_START_INSTRUMENTATION;
CALLGRIND_ZERO_STATS;
CALLGRIND_TOGGLE_COLLECT;
dbusmenu_server_set_root(server, root);
- g_timeout_add_seconds(100, timer_func, NULL);
-
return;
}