1#!/usr/bin/env bash
2# Copyright 2023 Nordic Semiconductor ASA
3# SPDX-License-Identifier: Apache-2.0
4
5# Compile all the applications needed by the bsim tests in these subfolders
6
7#set -x #uncomment this line for debugging
8set -ue
9
10: "${ZEPHYR_BASE:?ZEPHYR_BASE must be set to point to the zephyr root directory}"
11
12#Set a default value to BOARD if it does not have one yet
13BOARD="${BOARD:-nrf52_bsim/native}"
14
15west twister -T ${ZEPHYR_BASE}/tests/bsim/bluetooth/host/ -p ${BOARD}
16