diff --git a/unit/test-mgmt.c b/unit/test-mgmt.c
index 8cd5565..c67678b 100644
--- a/unit/test-mgmt.c
+++ b/unit/test-mgmt.c
context_quit(context);
}
+static void destroy_cb(uint16_t index, uint16_t length, const void *param,
+ void *user_data)
+{
+ struct context *context = user_data;
+
+ mgmt_unref(context->mgmt_client);
+ context->mgmt_client = NULL;
+
+ context_quit(context);
+}
+
static void test_unregister_index(gconstpointer data)
{
const struct command_test_data *test = data;
execute_context(context);
}
+static void test_destroy(gconstpointer data)
+{
+ const struct command_test_data *test = data;
+ struct context *context = create_context();
+
+ mgmt_register(context->mgmt_client, test->opcode, test->index,
+ destroy_cb, context, NULL);
+ mgmt_register(context->mgmt_client, test->opcode, test->index,
+ event_cb, context, NULL);
+
+ g_assert_cmpint(write(context->fd, test->cmd_data, test->cmd_size), ==,
+ test->cmd_size);
+
+ execute_context(context);
+}
+
int main(int argc, char *argv[])
{
g_test_init(&argc, &argv, NULL);
g_test_add_data_func("/mgmt/unregister/2", &event_test_1,
test_unregister_index);
+ g_test_add_data_func("/mgmt/destroy/1", &event_test_1, test_destroy);
+
return g_test_run();
}