summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test-service.c2
-rw-r--r--test/test-utils.c6
2 files changed, 7 insertions, 1 deletions
diff --git a/test/test-service.c b/test/test-service.c
index 56764dea..732e5b13 100644
--- a/test/test-service.c
+++ b/test/test-service.c
@@ -154,7 +154,7 @@ main (int argc,
dbus_shutdown ();
- printf ("*** Test service exiting\n");
+ _dbus_verbose ("*** Test service exiting\n");
return 0;
}
diff --git a/test/test-utils.c b/test/test-utils.c
index 62963f38..c7d4aa59 100644
--- a/test/test-utils.c
+++ b/test/test-utils.c
@@ -34,10 +34,16 @@ connection_watch_callback (DBusWatch *watch,
dbus_bool_t retval;
dbus_connection_ref (cd->connection);
+
+ _dbus_verbose (" Handling watch\n");
retval = dbus_connection_handle_watch (cd->connection, watch, condition);
+ _dbus_verbose (" Watch handled\n");
+
test_connection_dispatch_all_messages (cd->connection);
+
+ _dbus_verbose (" Dispatched all\n");
dbus_connection_unref (cd->connection);