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_8_i"
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_8_I() {
16    printf "\n\n======== Running GMAP AC_8_I with %s and %s =========\n\n" $1 $2
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_8_i -RealEncryption=1 \
20        -rs=23 -D=2 -argstest sink_preset $1 source_preset $2
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=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 ${@:3}
29
30    wait_for_background_jobs
31}
32
33set -e # Exit on error
34
35Execute_AC_8_I 32_1_gr 16_1_gs
36Execute_AC_8_I 32_2_gr 16_2_gs
37Execute_AC_8_I 48_1_gr 16_1_gs
38Execute_AC_8_I 48_2_gr 16_2_gs
39Execute_AC_8_I 32_1_gr 32_1_gs
40Execute_AC_8_I 32_2_gr 32_2_gs
41Execute_AC_8_I 48_1_gr 32_1_gs
42Execute_AC_8_I 48_2_gr 32_2_gs
43Execute_AC_8_I 48_1_gr 48_1_gs
44Execute_AC_8_I 48_2_gr 48_2_gs
45Execute_AC_8_I 48_3_gr 32_1_gs
46Execute_AC_8_I 48_4_gr 32_2_gs
47Execute_AC_8_I 48_3_gr 48_1_gs
48Execute_AC_8_I 48_4_gr 48_2_gs
49