aboutsummaryrefslogtreecommitdiff
path: root/tests/test-gtk-label-client.c
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2009-12-16 21:35:02 -0600
committerTed Gould <ted@gould.cx>2009-12-16 21:35:02 -0600
commit1630c946d0a760ebf4796db40d4e70ce454e2e74 (patch)
treeacd05cb5077d07941467c4fc705048b4fd030aaf /tests/test-gtk-label-client.c
parent763a7a3e7915858a80ceb0140a13631c7c042a13 (diff)
downloadlibdbusmenu-1630c946d0a760ebf4796db40d4e70ce454e2e74.tar.gz
libdbusmenu-1630c946d0a760ebf4796db40d4e70ce454e2e74.tar.bz2
libdbusmenu-1630c946d0a760ebf4796db40d4e70ce454e2e74.zip
Adding some debug messages to the printout.
Diffstat (limited to 'tests/test-gtk-label-client.c')
-rw-r--r--tests/test-gtk-label-client.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/test-gtk-label-client.c b/tests/test-gtk-label-client.c
index 09325be..070c278 100644
--- a/tests/test-gtk-label-client.c
+++ b/tests/test-gtk-label-client.c
@@ -152,9 +152,11 @@ main (int argc, char ** argv)
{
gtk_init(&argc, &argv);
+ g_debug("Client Initialized. Waiting.");
/* Make sure the server starts up and all that */
g_usleep(500000);
+ g_debug("Building Window");
GtkWidget * window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
GtkWidget * menubar = gtk_menu_bar_new();
GtkWidget * menuitem = gtk_menu_item_new_with_label("Test");
@@ -168,6 +170,7 @@ main (int argc, char ** argv)
death_timer = g_timeout_add_seconds(60, timer_func, window);
+ g_debug("Entering Mainloop");
mainloop = g_main_loop_new(NULL, FALSE);
g_main_loop_run(mainloop);