blob: 568cf108818a07aab81078da9cc5e70cc521dbc5 [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#ifndef COMMON_H
8#define COMMON_H
9
10#include "psa/error.h"
11
12psa_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);
14void test_teardown(void);
15
16#endif /* COMMON_H */