summaryrefslogtreecommitdiff
path: root/tests/tests.mk
blob: 58fdea46ceed9115b2199cae4e07336ba90e10f5 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# Copyright (c) 2014-2015, ARM Limited and Contributors. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# Neither the name of ARM nor the names of its contributors may be used
# to endorse or promote products derived from this software without specific
# prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#

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/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/query_std_svc.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