Kevin Peng | 62a8711 | 2020-07-07 15:07:46 +0800 | [diff] [blame] | 1 | /* |
Xinyu Zhang | 4c640e8 | 2021-09-22 15:25:09 +0800 | [diff] [blame^] | 2 | * Copyright (c) 2019-2021, Arm Limited. All rights reserved. |
Kevin Peng | 62a8711 | 2020-07-07 15:07:46 +0800 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #include "psa_api_test.h" |
Kevin Peng | 62a8711 | 2020-07-07 15:07:46 +0800 | [diff] [blame] | 9 | #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 | */ |
| 15 | extern void val_entry(void); |
| 16 | |
| 17 | __attribute__((noreturn)) |
| 18 | void psa_api_test(void *arg) |
| 19 | { |
| 20 | UNUSED_VARIABLE(arg); |
| 21 | |
Kevin Peng | 62a8711 | 2020-07-07 15:07:46 +0800 | [diff] [blame] | 22 | val_entry(); |
| 23 | |
| 24 | for (;;) { |
| 25 | } |
| 26 | } |