blob: b3b7d4a2bde36312e91699a1e761514b7c8b442b [file] [log] [blame]
Mark Dykes16b71692021-09-15 14:13:55 -05001#
AlexeiFedorov2f30f102023-03-13 19:37:46 +00002# Copyright (c) 2021-2023, Arm Limited. All rights reserved.
Mark Dykes16b71692021-09-15 14:13:55 -05003#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6
Shruti Gupta369955a2023-04-19 18:05:56 +01007ifeq (${ARCH},aarch64)
nabkah01002e5692022-10-10 12:36:46 +01008TFTF_INCLUDES += \
9 -Iinclude/runtime_services/host_realm_managment
10
Mark Dykes16b71692021-09-15 14:13:55 -050011TESTS_SOURCES += \
12 $(addprefix tftf/tests/runtime_services/realm_payload/, \
nabkah01002e5692022-10-10 12:36:46 +010013 host_realm_payload_tests.c \
nabkah01cd668462022-11-06 15:29:44 +000014 host_realm_spm.c \
Mark Dykeseb6a2792021-09-30 15:35:47 -050015 )
16
17TESTS_SOURCES += \
nabkah01002e5692022-10-10 12:36:46 +010018 $(addprefix tftf/tests/runtime_services/host_realm_managment/, \
AlexeiFedorov2f30f102023-03-13 19:37:46 +000019 host_pmuv3.c \
nabkah01002e5692022-10-10 12:36:46 +010020 host_realm_rmi.c \
21 host_realm_helper.c \
22 host_shared_data.c \
23 rmi_delegate_tests.c \
Mark Dykes16b71692021-09-15 14:13:55 -050024 )
nabkah01002e5692022-10-10 12:36:46 +010025
26TESTS_SOURCES += \
nabkah01cd668462022-11-06 15:29:44 +000027 $(addprefix tftf/tests/runtime_services/secure_service/, \
28 ${ARCH}/ffa_arch_helpers.S \
29 ffa_helpers.c \
30 spm_common.c \
31 )
32
33TESTS_SOURCES += \
nabkah01002e5692022-10-10 12:36:46 +010034 $(addprefix lib/heap/, \
35 page_alloc.c \
AlexeiFedorov2f30f102023-03-13 19:37:46 +000036 )
Shruti Gupta369955a2023-04-19 18:05:56 +010037
38TESTS_SOURCES += \
39 $(addprefix lib/extensions/fpu/, \
40 fpu.c \
41 )
42endif