blob: ac308f237c4a70424799fc15f7fe554d683797ad [file] [log] [blame]
Kevin Peng62a87112020-07-07 15:07:46 +08001#-------------------------------------------------------------------------------
2# Copyright (c) 2017-2020, Arm Limited. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6#-------------------------------------------------------------------------------
7
8#Definitions to compile the "test" module.
9#This file assumes it will be included from a project specific cmakefile, and
10#will not create a library or executable.
11#Inputs:
12# TFM_ROOT_DIR - root directory of the TF-M repo.
13#
14#Outputs:
15# Will modify include directories to make the source compile.
16# ALL_SRC_C: C source files to be compiled will be added to this list. This shall be added to your add_executable or add_library command.
17# ALL_SRC_CXX: C++ source files to be compiled will be added to this list. This shall be added to your add_executable or add_library command.
18# ALL_SRC_ASM: assembly source files to be compiled will be added to this list. This shall be added to your add_executable or add_library command.
19# Include directories will be modified by using the include_directories() commands as needed.
20
21#Get the current directory where this file is located.
22if(NOT DEFINED TFM_ROOT_DIR)
23 message(FATAL_ERROR "Please set TFM_ROOT_DIR before including this file.")
24endif()
25
26if (NOT DEFINED ENABLE_AUDIT_LOGGING_SERVICE_TESTS)
27 message(FATAL_ERROR "Incomplete build configuration: ENABLE_AUDIT_LOGGING_SERVICE_TESTS is undefined.")
28endif()
29
30if (NOT DEFINED ENABLE_PLATFORM_SERVICE_TESTS)
31 message(FATAL_ERROR "Incomplete build configuration: ENABLE_PLATFORM_SERVICE_TESTS is undefined.")
32endif()
33
34embedded_include_directories(PATH ${TFM_ROOT_DIR}/secure_fw/spm ABSOLUTE)
35embedded_include_directories(PATH ${TFM_ROOT_DIR}/bl2/include ABSOLUTE)
36
37# Include the test framework
38include(${CMAKE_CURRENT_LIST_DIR}/framework/CMakeLists.inc)
39
40# Include the test suites
41include(${CMAKE_CURRENT_LIST_DIR}/suites/core/CMakeLists.inc)
42include(${CMAKE_CURRENT_LIST_DIR}/suites/ps/CMakeLists.inc)
43include(${CMAKE_CURRENT_LIST_DIR}/suites/its/CMakeLists.inc)
44include(${CMAKE_CURRENT_LIST_DIR}/suites/crypto/CMakeLists.inc)
45include(${CMAKE_CURRENT_LIST_DIR}/suites/attestation/CMakeLists.inc)
46include(${CMAKE_CURRENT_LIST_DIR}/suites/qcbor/CMakeLists.inc)
47include(${CMAKE_CURRENT_LIST_DIR}/suites/t_cose/CMakeLists.inc)
48include(${CMAKE_CURRENT_LIST_DIR}/suites/ipc/CMakeLists.inc)
49if (ENABLE_AUDIT_LOGGING_SERVICE_TESTS)
50 include(${CMAKE_CURRENT_LIST_DIR}/suites/audit/CMakeLists.inc)
51endif()
52if (ENABLE_PLATFORM_SERVICE_TESTS)
53 include(${CMAKE_CURRENT_LIST_DIR}/suites/platform/CMakeLists.inc)
54endif()
55if (TFM_MULTI_CORE_TEST)
56 include(${CMAKE_CURRENT_LIST_DIR}/suites/multi_core/CMakeLists.inc)
57endif()
58
59# Include the test partitions
60include(${CMAKE_CURRENT_LIST_DIR}/test_services/CMakeLists.inc)