summaryrefslogtreecommitdiff
path: root/test/loopback.c
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2018-07-12 12:51:38 +0100
committerSimon McVittie <smcv@collabora.com>2018-08-02 17:16:43 +0100
commit8177bbcf5262724d9bc5538b81aa366a51fbd520 (patch)
treea3725a7039c4b8f8c23f93485233778a6429cf65 /test/loopback.c
parent620406f7574f8078d4927ce6e2cc9e1491a4e893 (diff)
downloaddbus-8177bbcf5262724d9bc5538b81aa366a51fbd520.tar.gz
tests: Detach most connections from main loop before closing
We don't need to do this for connections that were never set up with the main loop. Signed-off-by: Simon McVittie <smcv@collabora.com> Reviewed-by: Philip Withnall <withnall@endlessm.com> Bug: https://bugs.freedesktop.org/show_bug.cgi?id=107194
Diffstat (limited to 'test/loopback.c')
-rw-r--r--test/loopback.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/test/loopback.c b/test/loopback.c
index ad7e0e94..f89f5a95 100644
--- a/test/loopback.c
+++ b/test/loopback.c
@@ -420,10 +420,16 @@ teardown (Fixture *f,
gconstpointer addr G_GNUC_UNUSED)
{
if (f->client_conn != NULL)
- dbus_connection_close (f->client_conn);
+ {
+ test_connection_shutdown (f->ctx, f->client_conn);
+ dbus_connection_close (f->client_conn);
+ }
if (f->server_conn != NULL)
- dbus_connection_close (f->server_conn);
+ {
+ test_connection_shutdown (f->ctx, f->server_conn);
+ dbus_connection_close (f->server_conn);
+ }
dbus_clear_connection (&f->client_conn);
dbus_clear_connection (&f->server_conn);