Add a babblesim test of the BT Tester doing a GAP smoke test connecting 2 BT testers using BTP. The purpose of this is to further increase the test coverage of the BT Tester in CI, as it is only being built, and runtime errors are typically not caught. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
16 lines
499 B
Plaintext
16 lines
499 B
Plaintext
# Copyright 2023-2024 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source "share/sysbuild/Kconfig"
|
|
|
|
config NET_CORE_BOARD
|
|
string
|
|
default "nrf5340dk/nrf5340/cpunet" if "$(BOARD)" = "nrf5340dk"
|
|
default "nrf5340_audio_dk/nrf5340/cpunet" if "$(BOARD)" = "nrf5340_audio_dk"
|
|
default "nrf5340bsim/nrf5340/cpunet" if $(BOARD_TARGET_STRING) = "NRF5340BSIM_NRF5340_CPUAPP"
|
|
|
|
config NET_CORE_IMAGE_HCI_IPC
|
|
bool "HCI IPC image on network core"
|
|
default y
|
|
depends on NET_CORE_BOARD != ""
|