blob: bd45b38042c5768fd3af7f63420eaa4265673c79 [file] [log] [blame]
Anton Komlev94758d42023-06-15 16:39:36 +01001/*
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))
17void 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}