blob: 8f9624bebb114975e637522b6ec76d179bd7b783 [file] [log] [blame]
Kevin Peng62a87112020-07-07 15:07:46 +08001/*
Xinyu Zhang4c640e82021-09-22 15:25:09 +08002 * Copyright (c) 2019-2021, Arm Limited. All rights reserved.
Kevin Peng62a87112020-07-07 15:07:46 +08003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#include "psa_api_test.h"
Kevin Peng62a87112020-07-07 15:07:46 +08009#include "tfm_integ_test.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__attribute__((noreturn))
18void psa_api_test(void *arg)
19{
20 UNUSED_VARIABLE(arg);
21
Kevin Peng62a87112020-07-07 15:07:46 +080022 val_entry();
23
24 for (;;) {
25 }
26}