Kevin Peng | 342ec68 | 2022-04-29 10:36:58 +0800 | [diff] [blame] | 1 | /* |
| 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 Hu | 87b46a8 | 2023-10-21 23:23:42 +0800 | [diff] [blame] | 11 | #include <stdint.h> |
| 12 | |
Kevin Peng | 342ec68 | 2022-04-29 10:36:58 +0800 | [diff] [blame] | 13 | #ifdef __cplusplus |
| 14 | extern "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 | */ |
| 28 | void test_app(void *argument); |
| 29 | |
| 30 | #ifdef __cplusplus |
| 31 | } |
| 32 | #endif |
| 33 | |
| 34 | #endif /* __TFM_TEST_APP_H__ */ |