blob: 9f3860bad9dd518a6896e76578ea2d7ee0acb8dc [file] [log] [blame]
Gabor Toth6df91b52023-05-15 14:17:16 +02001/*
2 * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#include "../psa_api_test_common.h"
8#include "libpsa.h"
9#include "trace.h"
10
11psa_status_t test_setup(const char *service_name_crypto, const char *service_name_iat,
12 const char *service_name_ps, const char *service_name_its)
13{
14 psa_status_t psa_status = PSA_ERROR_GENERIC_ERROR;
15
16 if (!service_name_its)
17 service_name_its = "sn:trustedfirmware.org:internal-trusted-storage:0";
18
19 psa_status = libpsa_init_its_context(service_name_its);
20 if (psa_status) {
21 EMSG("libpsa_init_its_context failed: %d\n", psa_status);
22 return psa_status;
23 }
24
25 return psa_status;
26}
27
28void test_teardown(void)
29{
30 libpsa_deinit_its_context();
31}