Anton Komlev | 94758d4 | 2023-06-15 16:39:36 +0100 | [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 | #include "test_app.h" |
| 9 | #include "tfm_log.h" |
| 10 | #include "test_framework_integ_test.h" |
| 11 | |
| 12 | /** |
| 13 | * \brief Services test thread |
| 14 | * |
| 15 | */ |
| 16 | __attribute__((noreturn)) |
| 17 | void test_app(void *argument) |
| 18 | { |
| 19 | UNUSED_VARIABLE(argument); |
| 20 | |
| 21 | tfm_non_secure_client_run_tests(); |
| 22 | |
| 23 | /* Output EOT char for test environments like FVP. */ |
| 24 | LOG_MSG("\x04"); |
| 25 | |
| 26 | /* End of test */ |
| 27 | for (;;) { |
| 28 | } |
| 29 | } |