Gabor Toth | 6df91b5 | 2023-05-15 14:17:16 +0200 | [diff] [blame] | 1 | /* |
2 | * Copyright (c) 2023, Arm Limited and Contributors. All rights reserved. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: BSD-3-Clause | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef COMMON_H | ||||
8 | #define COMMON_H | ||||
9 | |||||
10 | #include "psa/error.h" | ||||
11 | |||||
12 | psa_status_t test_setup(const char *service_name_crypto, const char *service_name_iat, | ||||
13 | const char *service_name_ps, const char *service_name_its); | ||||
14 | void test_teardown(void); | ||||
15 | |||||
16 | #endif /* COMMON_H */ |