blob: 35728ba41d6f5e4439849e91c20ad7ffee4a6bfe [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
David Hu87b46a82023-10-21 23:23:42 +080011#include <stdint.h>
12
Kevin Peng342ec682022-04-29 10:36:58 +080013#ifdef __cplusplus
14extern "C" {
15#endif
16
17/**
18 * \brief Simple macro to mark UNUSED variables
19 *
20 */
21#define UNUSED_VARIABLE(X) ((void)(X))
22
23/**
24 * \brief Main test application for the RTX-TFM core
25 * integration tests
26 *
27 */
28void test_app(void *argument);
29
30#ifdef __cplusplus
31}
32#endif
33
34#endif /* __TFM_TEST_APP_H__ */