1#!/usr/bin/env bash 2# 3# Copyright (c) 2024 Nordic Semiconductor ASA 4# 5# SPDX-License-Identifier: Apache-2.0 6 7SIMULATION_ID="cap_broadcast_ac_14" 8VERBOSITY_LEVEL=2 9EXECUTE_TIMEOUT=60 10 11source ${ZEPHYR_BASE}/tests/bsim/sh_common.source 12 13cd ${BSIM_OUT_PATH}/bin 14 15function Execute_AC_14() { 16 printf "\n\n======== Running CAP AC_14 with %s =========\n\n" $1 17 18 Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ 19 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_14 \ 20 -RealEncryption=1 -rs=23 -D=2 -argstest preset $1 21 22 Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ 23 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_broadcast \ 24 -RealEncryption=1 -rs=46 -D=2 25 26 # Simulation time should be larger than the WAIT_TIME in common.h 27 Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ 28 -D=2 -sim_length=60e6 ${@:2} 29 30 wait_for_background_jobs 31} 32 33set -e # Exit on error 34 35# Low latency tests 36Execute_AC_14 8_1_1 37Execute_AC_14 8_2_1 38Execute_AC_14 16_1_1 39Execute_AC_14 16_2_1 40Execute_AC_14 24_1_1 41Execute_AC_14 24_2_1 42Execute_AC_14 32_1_1 43Execute_AC_14 32_2_1 44Execute_AC_14 441_1_1 45Execute_AC_14 441_2_1 46Execute_AC_14 48_1_1 47Execute_AC_14 48_2_1 48Execute_AC_14 48_3_1 49Execute_AC_14 48_4_1 50Execute_AC_14 48_5_1 51Execute_AC_14 48_6_1 52 53# High reliability 54# Execute_AC_14 8_1_2 # BT_ISO_FLAGS_ERROR 55# Execute_AC_14 8_2_2 # BT_ISO_FLAGS_ERROR 56# Execute_AC_14 16_1_2 # BT_ISO_FLAGS_ERROR 57# Execute_AC_14 16_2_2 # BT_ISO_FLAGS_ERROR 58# Execute_AC_14 24_1_2 # BT_ISO_FLAGS_ERROR 59# Execute_AC_14 24_2_2 # BT_ISO_FLAGS_ERROR 60# Execute_AC_14 32_1_2 # BT_ISO_FLAGS_ERROR 61# Execute_AC_14 32_2_2 # BT_ISO_FLAGS_ERROR 62# Execute_AC_14 441_1_2 # BT_ISO_FLAGS_ERROR 63# Execute_AC_14 441_2_2 # BT_ISO_FLAGS_ERROR 64# Execute_AC_14 48_1_2 # BT_ISO_FLAGS_ERROR 65# Execute_AC_14 48_2_2 # BT_ISO_FLAGS_ERROR 66# Execute_AC_14 48_3_2 # BT_ISO_FLAGS_ERROR 67# Execute_AC_14 48_4_2 # BT_ISO_FLAGS_ERROR 68# Execute_AC_14 48_5_2 # BT_ISO_FLAGS_ERROR 69# Execute_AC_14 48_6_2 # BT_ISO_FLAGS_ERROR 70