1#!/usr/bin/env bash 2# 3# Copyright (c) 2023 Nordic Semiconductor ASA 4# 5# SPDX-License-Identifier: Apache-2.0 6 7SIMULATION_ID="gmap_unicast_ac_2" 8VERBOSITY_LEVEL=2 9EXECUTE_TIMEOUT=60 10 11source ${ZEPHYR_BASE}/tests/bsim/sh_common.source 12 13cd ${BSIM_OUT_PATH}/bin 14 15 16function Execute_AC_2() { 17 printf "\n\n======== Running GMAP AC_2 with %s =========\n\n" $1 18 19 Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ 20 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_2 -RealEncryption=1 \ 21 -rs=23 -D=2 -argstest source_preset $1 22 23 Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ 24 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ 25 -rs=46 -D=2 26 27 # Simulation time should be larger than the WAIT_TIME in common.h 28 Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ 29 -D=2 -sim_length=60e6 ${@:2} 30 31 wait_for_background_jobs 32} 33 34set -e # Exit on error 35 36Execute_AC_2 16_1_gs 37Execute_AC_2 16_2_gs 38Execute_AC_2 32_1_gs 39Execute_AC_2 32_2_gs 40Execute_AC_2 48_1_gs 41Execute_AC_2 48_2_gs 42