summaryrefslogtreecommitdiff
path: root/tests/tests.mk
blob: 36d5c47242460c100541fdf3ae005b759ceea49e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#
# Copyright (c) 2014-2018, ARM Limited and Contributors. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#

TESTS_SOURCES	:=	tests/framework_validation_tests/test_timer_framework.c		\
			tests/framework_validation_tests/test_validation_events.c	\
			tests/framework_validation_tests/test_validation_irq.c		\
			tests/framework_validation_tests/test_validation_nvm.c		\
			tests/framework_validation_tests/test_validation_sgi.c		\
			tests/performance_tests/smc_latencies.c				\
			tests/runtime_services/secure_service/test_secure_service_handle.c \
			tests/runtime_services/sip_service/test_exec_state_switch.c	\
			tests/runtime_services/sip_service/test_exec_state_switch_asm.S \
			tests/runtime_services/standard_service/pmf/api_tests/runtime_instr/test_pmf_rt_instr.c	\
			tests/runtime_services/standard_service/psci/api_tests/affinity_info/test_psci_affinity_info.c	\
			tests/runtime_services/standard_service/psci/api_tests/cpu_hotplug/test_psci_hotplug.c	\
			tests/runtime_services/standard_service/psci/api_tests/cpu_hotplug/test_psci_hotplug_invalid.c \
			tests/runtime_services/standard_service/psci/api_tests/cpu_suspend/test_suspend.c	\
			tests/runtime_services/standard_service/psci/api_tests/migrate_info_type/test_migrate_info_type.c \
			tests/runtime_services/standard_service/psci/api_tests/psci_features/test_psci_features.c \
			tests/runtime_services/standard_service/psci/api_tests/psci_node_hw_state/test_node_hw_state.c \
			tests/runtime_services/standard_service/psci/api_tests/psci_stat/test_psci_stat.c	\
			tests/runtime_services/standard_service/psci/api_tests/psci_version/test_psci_version.c	\
			tests/runtime_services/standard_service/psci/api_tests/system_off/test_system_off.c \
			tests/runtime_services/standard_service/psci/api_tests/system_suspend/test_psci_system_suspend.c \
			tests/runtime_services/standard_service/psci/api_tests/validate_power_state/test_validate_power_state.c \
			tests/runtime_services/standard_service/psci/system_tests/test_psci_hotplug_stress.c		\
			tests/runtime_services/standard_service/psci/system_tests/test_psci_on_off_suspend_stress.c		\
			tests/runtime_services/standard_service/psci/system_tests/test_psci_system_suspend_stress.c	\
			tests/runtime_services/standard_service/psci/api_tests/mem_protect/test_mem_protect.c	\
			tests/runtime_services/standard_service/psci/api_tests/mem_protect_check/mem_protect_check.c \
			tests/runtime_services/standard_service/psci/api_tests/reset2/reset2.c \
			tests/runtime_services/standard_service/query_std_svc.c \
			tests/runtime_services/standard_service/sdei/system_tests/sdei_entrypoint.S \
			tests/runtime_services/standard_service/sdei/system_tests/test_sdei.c \
			tests/runtime_services/standard_service/sdei/system_tests/test_sdei_state.c \
			tests/runtime_services/trusted_os/tsp/test_irq_preempted_std_smc.c \
			tests/runtime_services/trusted_os/tsp/test_normal_int_switch.c \
			tests/runtime_services/trusted_os/tsp/test_smc_tsp_std_fn_call.c \
			tests/runtime_services/trusted_os/tsp/test_tsp_fast_smc.c

ifeq (${FWU_BL_TEST},1)
TESTS_SOURCES	+=	tests/fwu_tests/test_fwu_toc.c		\
			tests/fwu_tests/test_fwu_auth.c		\
			plat/common/fwu_nvm_accessors.c
endif

# The following source files are part of the "template" testsuite, which aims
# at providing template test code as a starting point for developing new tests.
# They don't do anything useful in terms of testing so they are disabled by
# default. Uncomment those lines along with the corresponding test suite XML
# node in the tests/tests.xml file to enable them.
# TESTS_SOURCES	+=	tests/template_tests/test_template_single_core.c		\
#			tests/template_tests/test_template_multi_core.c