blob: 80190bdfa7ce29655cd6e99c0b038cbe12a4ea4b [file] [log] [blame]
Anton Komlev95d34072023-08-23 15:59:26 +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
11/**
12 * \brief This symbol is the entry point provided by the PSA API compliance
13 * test libraries
14 */
15extern void val_entry(void);
16
17/**
18 * \brief Services test thread
19 *
20 */
21__attribute__((noreturn))
22void test_app(void *argument)
23{
24 UNUSED_VARIABLE(argument);
25
26 val_entry();
27
28 /* Output EOT char for test environments like FVP. */
29 LOG_MSG("\x04");
30
31 /* End of test */
32 for (;;) {
33 }
34}