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: "${ZEPHYR_BASE:?ZEPHYR_BASE must be set to point to the zephyr root directory}" 10 11source ${ZEPHYR_BASE}/tests/bsim/compile.source 12 13app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay.conf compile 14app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-acl_first.conf compile 15app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-legacy_adv.conf compile 16app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-legacy_adv_acl_first.conf compile 17app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-acl_group.conf compile 18app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-acl_group_acl_first.conf compile 19app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-peripheral_cis.conf compile 20app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-acl_first_ft_per_skip_2_se.conf compile 21app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-acl_first_ft_per_skip_4_se.conf compile 22app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-acl_first_ft_cen_skip_2_se.conf compile 23app=tests/bsim/bluetooth/ll/cis conf_overlay=overlay-acl_first_ft_cen_skip_4_se.conf compile 24 25wait_for_background_jobs 26