From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> destroy_context() function will be used for dummy_tests without context_execute() --- unit/test-avdtp.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/unit/test-avdtp.c b/unit/test-avdtp.c index 0f59061..e4d8bb2 100644 --- a/unit/test-avdtp.c +++ b/unit/test-avdtp.c @@ -259,10 +259,8 @@ static struct context *create_context(uint16_t version, gconstpointer data) return context_new(version, 672, 672, data); } -static void execute_context(struct context *context) +static void destroy_context(struct context *context) { - g_main_loop_run(context->main_loop); - if (context->source > 0) g_source_remove(context->source); avdtp_unref(context->session); @@ -273,6 +271,13 @@ static void execute_context(struct context *context) g_free(context); } +static void execute_context(struct context *context) +{ + g_main_loop_run(context->main_loop); + + destroy_context(context); +} + static gboolean sep_getcap_ind(struct avdtp *session, struct avdtp_local_sep *sep, GSList **caps, uint8_t *err, @@ -601,6 +606,7 @@ static void test_server_seid(gconstpointer data) /* Remove all SEPs */ queue_destroy(lseps, unregister_sep); + destroy_context(context); } static void test_server_seid_duplicate(gconstpointer data) -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html