blob: d60827c78ba7fd851ada6f761f648fbb95e23ce9 [file] [log] [blame]
Kevin Peng342ec682022-04-29 10:36:58 +08001/*
2 * Copyright (c) 2017-2022, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef __TFM_TEST_APP_H__
9#define __TFM_TEST_APP_H__
10
11#ifdef __cplusplus
12extern "C" {
13#endif
14
15/**
16 * \brief Simple macro to mark UNUSED variables
17 *
18 */
19#define UNUSED_VARIABLE(X) ((void)(X))
20
21/**
22 * \brief Main test application for the RTX-TFM core
23 * integration tests
24 *
25 */
26void test_app(void *argument);
27
28#ifdef __cplusplus
29}
30#endif
31
32#endif /* __TFM_TEST_APP_H__ */