From bce0b79980c705cee8aa470d9bf724d4a18cf5eb Mon Sep 17 00:00:00 2001
From: Julian Bouzas <julian.bouzas@collabora.com>
Date: Thu, 8 Apr 2021 11:03:17 -0400
Subject: [PATCH] tests: si-standard-link: sync core before finishing

Makes sure core has finished any pending task before finishing the test.
---
 tests/modules/si-standard-link.c | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/tests/modules/si-standard-link.c b/tests/modules/si-standard-link.c
index 56ebe311..c88b7d9f 100644
--- a/tests/modules/si-standard-link.c
+++ b/tests/modules/si-standard-link.c
@@ -127,9 +127,21 @@ test_si_standard_link_setup (TestFixture * f, gconstpointer user_data)
   f->sink_item = load_endpoint (f, "fakesink", "Audio/Sink");
 }
 
+static void
+on_core_sync_done (WpCore *core, GAsyncResult *res, TestFixture * f)
+{
+  g_autoptr (GError) error = NULL;
+  gboolean ret = wp_core_sync_finish (core, res, &error);
+  g_assert_no_error (error);
+  g_assert_true (ret);
+  g_main_loop_quit (f->base.loop);
+}
+
 static void
 test_si_standard_link_teardown (TestFixture * f, gconstpointer user_data)
 {
+  wp_core_sync (f->base.core, NULL, (GAsyncReadyCallback) on_core_sync_done, f);
+  g_main_loop_run (f->base.loop);
   g_clear_object (&f->sink_item);
   g_clear_object (&f->src_item);
   g_clear_object (&f->session);
-- 
GitLab