Lines Matching defs:test_ctx
224 TALLOC_CTX *test_ctx;
226 test_ctx = talloc_new(NULL);
227 assert_non_null(test_ctx);
229 res = ifp_parse_user_attr_list(test_ctx, input);
240 talloc_free(test_ctx);
247 TALLOC_CTX *test_ctx;
249 test_ctx = talloc_new(NULL);
250 assert_non_null(test_ctx);
252 res = parse_attr_list_ex(test_ctx, input, defaults);
263 talloc_free(test_ctx);
365 struct ifp_test_req_ctx *test_ctx;
370 test_ctx = talloc_zero(global_talloc_context, struct ifp_test_req_ctx);
371 assert_non_null(test_ctx);
372 test_ctx->ifp_ctx = mock_ifp_ctx(test_ctx);
373 assert_non_null(test_ctx->ifp_ctx);
375 test_ctx->sr = mock_sbus_request(test_ctx, geteuid());
376 assert_non_null(test_ctx->sr);
378 ret = ifp_req_create(test_ctx->sr, test_ctx->ifp_ctx, &test_ctx->ireq);
380 assert_non_null(test_ctx->ireq);
382 check_leaks_push(test_ctx);
383 *state = test_ctx;
389 struct ifp_test_req_ctx *test_ctx = talloc_get_type_abort(*state,
392 assert_true(check_leaks_pop(test_ctx) == true);
394 dbus_message_unref(test_ctx->sr->message);
395 talloc_free(test_ctx);