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_6_ii" 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_6_II() { 16 printf "\n\n======== Running GMAP AC_6_II 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=gmap_ugg_ac_6_ii -RealEncryption=1 \ 20 -rs=23 -D=3 -argstest sink_preset $1 21 22 Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ 23 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ 24 -rs=46 -D=3 25 26 Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ 27 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=gmap_ugt -RealEncryption=1 \ 28 -rs=69 -D=3 29 30 # Simulation time should be larger than the WAIT_TIME in common.h 31 Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ 32 -D=3 -sim_length=60e6 ${@:2} 33 34 wait_for_background_jobs 35} 36 37set -e # Exit on error 38 39Execute_AC_6_II 32_1_gr 40Execute_AC_6_II 32_2_gr 41Execute_AC_6_II 48_1_gr 42Execute_AC_6_II 48_2_gr 43Execute_AC_6_II 48_3_gr 44Execute_AC_6_II 48_4_gr 45