summaryrefslogtreecommitdiff
path: root/test/CMakeLists.txt
blob: 2121715b317603b0c18c85d47f3c9394aa7bde65 (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
# Copyright (C) 2015-2022 Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

##############################################################################
# add network, unit and benchmark tests directories
##############################################################################
add_subdirectory( network_tests EXCLUDE_FROM_ALL )

if (NOT DISABLE_SECURITY)
    add_subdirectory( unit_tests EXCLUDE_FROM_ALL )

    if(benchmark_FOUND)
        add_subdirectory( benchmark_tests EXCLUDE_FROM_ALL )
    endif()
endif()

##############################################################################
# Add internal_routing_disabled_acceptance_test
##############################################################################

if(NOT ${TESTS_BAT})
    add_subdirectory(internal_routing_disabled_acceptance_test)
endif()