diff --git a/tests/bsim/bluetooth/audio/test_scripts/_cap_broadcast.sh b/tests/bsim/bluetooth/audio/test_scripts/_cap_broadcast.sh index f8478cdc5113c..45904bd3682f2 100755 --- a/tests/bsim/bluetooth/audio/test_scripts/_cap_broadcast.sh +++ b/tests/bsim/bluetooth/audio/test_scripts/_cap_broadcast.sh @@ -1,7 +1,5 @@ #!/usr/bin/env bash -# # Copyright (c) 2025 Nordic Semiconductor ASA -# # SPDX-License-Identifier: Apache-2.0 dir_path=$(dirname "$0") diff --git a/tests/bsim/bluetooth/audio/test_scripts/_cap_unicast.sh b/tests/bsim/bluetooth/audio/test_scripts/_cap_unicast.sh index 1f1f63b37e878..36bc3f4a451fa 100755 --- a/tests/bsim/bluetooth/audio/test_scripts/_cap_unicast.sh +++ b/tests/bsim/bluetooth/audio/test_scripts/_cap_unicast.sh @@ -1,7 +1,5 @@ #!/usr/bin/env bash -# # Copyright (c) 2025 Nordic Semiconductor ASA -# # SPDX-License-Identifier: Apache-2.0 dir_path=$(dirname "$0") diff --git a/tests/bsim/bluetooth/audio/test_scripts/_gmap.sh b/tests/bsim/bluetooth/audio/test_scripts/_gmap.sh deleted file mode 100755 index 175e453da1ba4..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/_gmap.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -dir_path=$(dirname "$0") - -set -e # Exit on error - -$dir_path/gmap_unicast_ac_1.sh -$dir_path/gmap_unicast_ac_2.sh -$dir_path/gmap_unicast_ac_3.sh -$dir_path/gmap_unicast_ac_4.sh -$dir_path/gmap_unicast_ac_5.sh -$dir_path/gmap_unicast_ac_6_i.sh -$dir_path/gmap_unicast_ac_6_ii.sh -$dir_path/gmap_unicast_ac_7_ii.sh -$dir_path/gmap_unicast_ac_8_i.sh -$dir_path/gmap_unicast_ac_8_ii.sh -$dir_path/gmap_unicast_ac_11_i.sh -$dir_path/gmap_unicast_ac_11_ii.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_ac_common.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_ac_common.sh new file mode 100755 index 0000000000000..05daa11082ed3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_ac_common.sh @@ -0,0 +1,70 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source ${ZEPHYR_BASE}/tests/bsim/sh_common.source + +VERBOSITY_LEVEL=2 +EXECUTE_TIMEOUT=60 +BSIM_EXE=./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf + +cd ${BSIM_OUT_PATH}/bin + +function Execute_ac() { + if [[ -n $ac_tx_preset ]]; then + ac_tx_preset_arg="${ac_tx_preset_arg_name} ${ac_tx_preset}" + else + ac_tx_preset_arg="" + fi + + if [[ -n $ac_rx_preset ]]; then + ac_rx_preset_arg="source_preset ${ac_rx_preset}" + else + ac_rx_preset_arg="" + fi + + + sim_id="${ac_profile}_ac_${ac_config}_${ac_tx_preset}_${ac_rx_preset}" + + printf "\n\n======== Running %s AC_%s with %s %s =========\n\n" \ + "${ac_profile}" "${ac_config}" "${ac_tx_preset_arg}" "${ac_rx_preset_arg}" + + let ac_device_count=1+${ac_acc_cnt} + ac_ini_name=${ac_ini_name}_${ac_config} + + Execute ${BSIM_EXE} -v=${VERBOSITY_LEVEL} -s=${sim_id} -d=0 -testid=${ac_ini_name} \ + -RealEncryption=1 -rs=23 -D=${ac_device_count} \ + -argstest ${ac_tx_preset_arg} ${ac_rx_preset_arg} + + for i in $(seq 1 $ac_acc_cnt); do + let rs=${i}*7 # ensure unique random seed value per acceptor + + Execute ${BSIM_EXE} -v=${VERBOSITY_LEVEL} -s=${sim_id} -d=${i} -testid=${ac_acc_name} \ + -RealEncryption=1 -rs=${rs} -D=${ac_device_count} + done + + Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${sim_id} -D=${ac_device_count} \ + -sim_length=60e6 $@ + + wait_for_background_jobs +} + +function Execute_cap_unicast_ac() { + ac_profile="CAP" ac_ini_name=cap_initiator_ac ac_acc_name=cap_acceptor_unicast \ + ac_tx_preset_arg_name=sink_preset Execute_ac $@ +} + +function Execute_cap_broadcast_ac() { + ac_profile="CAP" ac_ini_name=cap_initiator_ac ac_acc_name=cap_acceptor_broadcast \ + ac_tx_preset_arg_name=preset Execute_ac $@ +} + +function Execute_gmap_unicast_ac() { + ac_profile="GMAP" ac_ini_name=gmap_ugg_ac ac_acc_name=gmap_ugt \ + ac_tx_preset_arg_name=sink_preset Execute_ac $@ +} + +function Execute_gmap_broadcast_ac() { + ac_profile="GMAP" ac_ini_name=gmap_ugg_ac ac_acc_name=cap_acceptor_broadcast \ + ac_tx_preset_arg_name=broadcast_preset Execute_ac $@ +} diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac.sh new file mode 100755 index 0000000000000..776303fb53a54 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_1.sh new file mode 100755 index 0000000000000..8325a2d239f1e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_1_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_10.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_10.sh new file mode 100755 index 0000000000000..66d32630729bb --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_10.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_10_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_11_i.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_11_i.sh new file mode 100755 index 0000000000000..d19349b3bda17 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_11_i.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_11_i_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_11_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_11_ii.sh new file mode 100755 index 0000000000000..06600ed3864ac --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_11_ii.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_11_ii_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_12.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_12.sh new file mode 100755 index 0000000000000..cb147ffa838cd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_12.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_12_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_13.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_13.sh new file mode 100755 index 0000000000000..0b8d347b69178 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_13.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_13_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_14.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_14.sh new file mode 100755 index 0000000000000..37fb69da8b10a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_14.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_14_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_2.sh new file mode 100755 index 0000000000000..2f26bcf9f29b9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_2_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_3.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_3.sh new file mode 100755 index 0000000000000..a2a069704506a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_3.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_3_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_4.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_4.sh new file mode 100755 index 0000000000000..2a72671590575 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_4.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_4_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_5.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_5.sh new file mode 100755 index 0000000000000..2fee1c25c5d6d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_5.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_5_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_6_i.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_6_i.sh new file mode 100755 index 0000000000000..afde8bda0113d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_6_i.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_6_i_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_6_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_6_ii.sh new file mode 100755 index 0000000000000..819851b8a6f5a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_6_ii.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_6_ii_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_7_i.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_7_i.sh new file mode 100755 index 0000000000000..5e97c39f4dc65 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_7_i.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_7_i_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_7_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_7_ii.sh new file mode 100755 index 0000000000000..5c12a921eb63c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_7_ii.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_7_ii_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_8_i.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_8_i.sh new file mode 100755 index 0000000000000..dade4a087256a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_8_i.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +set -e # Exit on error + +SEARCH_PATH="${dir_path}"/cap_ac_8_i_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_8_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_8_ii.sh new file mode 100755 index 0000000000000..55c800f6398b0 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_8_ii.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_8_ii_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_9.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_9.sh new file mode 100755 index 0000000000000..a0fc8438543f4 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_9.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_9_ii_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_9_i.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_9_i.sh new file mode 100755 index 0000000000000..31bedca301ca2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_cap_ac_9_i.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/cap_ac_9_i_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac.sh new file mode 100755 index 0000000000000..13af82f0e661d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_1.sh new file mode 100755 index 0000000000000..a37e206e17879 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_1_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_11_i.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_11_i.sh new file mode 100755 index 0000000000000..a788ea0df3411 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_11_i.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_11_i_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_11_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_11_ii.sh new file mode 100755 index 0000000000000..a58012a8301ff --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_11_ii.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_11_ii_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_12.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_12.sh new file mode 100755 index 0000000000000..a42bdb037a082 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_12.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_12_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_13.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_13.sh new file mode 100755 index 0000000000000..3ee76f8cffc05 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_13.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_13_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_14.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_14.sh new file mode 100755 index 0000000000000..a8b39b4727418 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_14.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_14_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_2.sh new file mode 100755 index 0000000000000..e909a9da9f132 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_2_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_3.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_3.sh new file mode 100755 index 0000000000000..afa1d668013bd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_3.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_3_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_4.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_4.sh new file mode 100755 index 0000000000000..023cf0945a8e9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_4.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_4_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_5.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_5.sh new file mode 100755 index 0000000000000..a5145b082e620 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_5.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_5_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_6_i.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_6_i.sh new file mode 100755 index 0000000000000..406a3e08b7928 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_6_i.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_6_i_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_6_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_6_ii.sh new file mode 100755 index 0000000000000..d00186faf0d24 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_6_ii.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_6_ii_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_7_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_7_ii.sh new file mode 100755 index 0000000000000..eabfdb3fa785b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_7_ii.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_7_ii_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_8_i.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_8_i.sh new file mode 100755 index 0000000000000..c2d096cb96e4d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_8_i.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_8_i_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_8_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_8_ii.sh new file mode 100755 index 0000000000000..287280ff8f5da --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/_gmap_ac_8_ii.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +dir_path=$(dirname "$0") + +SEARCH_PATH="${dir_path}"/gmap_ac_8_ii_*.sh tests/bsim/run_parallel.sh diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_16_1_1.sh new file mode 100755 index 0000000000000..c18144f2a2abf --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_16_2_1.sh new file mode 100755 index 0000000000000..25186afcb98eb --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_24_1_1.sh new file mode 100755 index 0000000000000..5824b4bc7e2fe --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_24_2_1.sh new file mode 100755 index 0000000000000..a64f82fc92270 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_32_1_1.sh new file mode 100755 index 0000000000000..2906978233ce8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_32_2_1.sh new file mode 100755 index 0000000000000..02eac537b8a75 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_441_1_1.sh new file mode 100755 index 0000000000000..c0ef2c11fbafb --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_441_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# bap_stream_rx.c:66): ISO receive lost +# https://github.com/zephyrproject-rtos/zephyr/issues/84303 +# ac_config=10 ac_rx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_441_2_1.sh new file mode 100755 index 0000000000000..c76f45798d336 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_441_2_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# bap_stream_rx.c:66): ISO receive lost +# https://github.com/zephyrproject-rtos/zephyr/issues/84303 +# ac_config=10 ac_rx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_1_1.sh new file mode 100755 index 0000000000000..e6021fdddc766 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_2_1.sh new file mode 100755 index 0000000000000..3035c69f84a17 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_3_1.sh new file mode 100755 index 0000000000000..92a38fe65290c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_4_1.sh new file mode 100755 index 0000000000000..38f132fce807e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_5_1.sh new file mode 100755 index 0000000000000..ee8634074b0ef --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_6_1.sh new file mode 100755 index 0000000000000..5264f480b3885 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_8_1_1.sh new file mode 100755 index 0000000000000..25ed978eb3f6c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_8_2_1.sh new file mode 100755 index 0000000000000..33c4bbf4db3db --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_10_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=10 ac_rx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_16_1_1.sh new file mode 100755 index 0000000000000..bdedfdde59677 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=16_1_1 ac_rx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_16_2_1.sh new file mode 100755 index 0000000000000..bae36d4d34f3d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=16_2_1 ac_rx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_24_1_1.sh new file mode 100755 index 0000000000000..f84350f84af62 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=24_1_1 ac_rx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_24_2_1.sh new file mode 100755 index 0000000000000..90542581fbc06 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=24_2_1 ac_rx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_32_1_1.sh new file mode 100755 index 0000000000000..aaee690359df8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=32_1_1 ac_rx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_32_2_1.sh new file mode 100755 index 0000000000000..1e6e9a1c47ecd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=32_2_1 ac_rx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_441_1_1.sh new file mode 100755 index 0000000000000..0e7cf95205d1e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_441_1_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=11_i ac_tx_preset=441_1_1 ac_rx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_441_2_1.sh new file mode 100755 index 0000000000000..995ce5bb55773 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=11_i ac_tx_preset=441_2_1 ac_rx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_1_1.sh new file mode 100755 index 0000000000000..ef227a9e8e75d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_1_1 ac_rx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_2_1.sh new file mode 100755 index 0000000000000..5929a5347783c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_2_1 ac_rx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_3_1.sh new file mode 100755 index 0000000000000..fc03acec0ae94 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_3_1 ac_rx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_4_1.sh new file mode 100755 index 0000000000000..6f9509d183d1d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_4_1 ac_rx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_5_1.sh new file mode 100755 index 0000000000000..0f518d093ed42 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_5_1 ac_rx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_6_1.sh new file mode 100755 index 0000000000000..0cd795622f588 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_6_1 ac_rx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_8_1_1.sh new file mode 100755 index 0000000000000..5c3cc1ef7dbe5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=8_1_1 ac_rx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_8_2_1.sh new file mode 100755 index 0000000000000..f7aae0cad4f40 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_i_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=8_2_1 ac_rx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_16_1_1.sh new file mode 100755 index 0000000000000..54d19d2f1c700 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=16_1_1 ac_rx_preset=16_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_16_2_1.sh new file mode 100755 index 0000000000000..42a689e20a873 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=16_2_1 ac_rx_preset=16_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_24_1_1.sh new file mode 100755 index 0000000000000..78d0282577566 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=24_1_1 ac_rx_preset=24_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_24_2_1.sh new file mode 100755 index 0000000000000..d9258edba02fb --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=24_2_1 ac_rx_preset=24_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_32_1_1.sh new file mode 100755 index 0000000000000..53a2d9fc9b1c2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=32_1_1 ac_rx_preset=32_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_32_2_1.sh new file mode 100755 index 0000000000000..df04f2499dfe2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=32_2_1 ac_rx_preset=32_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_441_1_1.sh new file mode 100755 index 0000000000000..22903021452ce --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_441_1_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=11_ii ac_tx_preset=441_1_1 ac_rx_preset=441_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_441_2_1.sh new file mode 100755 index 0000000000000..37f9a717c03eb --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=11_ii ac_tx_preset=441_2_1 ac_rx_preset=441_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_1_1.sh new file mode 100755 index 0000000000000..503919f843adc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_1_1 ac_rx_preset=48_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_2_1.sh new file mode 100755 index 0000000000000..8ea0fa34d6c8a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_2_1 ac_rx_preset=48_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_3_1.sh new file mode 100755 index 0000000000000..7b117693c1f95 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_3_1 ac_rx_preset=48_3_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_4_1.sh new file mode 100755 index 0000000000000..133eb06ec79df --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_4_1 ac_rx_preset=48_4_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_5_1.sh new file mode 100755 index 0000000000000..87084989fda7f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_5_1 ac_rx_preset=48_5_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_6_1.sh new file mode 100755 index 0000000000000..2e50647e1d945 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_6_1 ac_rx_preset=48_6_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_8_1_1.sh new file mode 100755 index 0000000000000..d35259f96d50f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=8_1_1 ac_rx_preset=8_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_8_2_1.sh new file mode 100755 index 0000000000000..6164ea940da9d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_11_ii_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=8_2_1 ac_rx_preset=8_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_1_1.sh new file mode 100755 index 0000000000000..d79a2d05b64a5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_1_2.sh new file mode 100755 index 0000000000000..f605c562310aa --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=16_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_2_1.sh new file mode 100755 index 0000000000000..6394fd7819190 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_2_2.sh new file mode 100755 index 0000000000000..196d13c1b4c9a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_16_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=16_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_1_1.sh new file mode 100755 index 0000000000000..6a2d0529c45aa --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_1_2.sh new file mode 100755 index 0000000000000..beb1b39143afb --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=24_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_2_1.sh new file mode 100755 index 0000000000000..0ce2fc1056724 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_2_2.sh new file mode 100755 index 0000000000000..9cf60c79a9fb4 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_24_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=24_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_1_1.sh new file mode 100755 index 0000000000000..e0b4b31dd1570 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_1_2.sh new file mode 100755 index 0000000000000..6f6e514cfe8b4 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=32_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_2_1.sh new file mode 100755 index 0000000000000..34c2006fe330d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_2_2.sh new file mode 100755 index 0000000000000..3f6d1f16711e0 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_32_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=32_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_1_1.sh new file mode 100755 index 0000000000000..3931e2c073d7f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_1_2.sh new file mode 100755 index 0000000000000..2773909320588 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_1_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_LOST +# ac_config=12 ac_tx_preset=441_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_2_1.sh new file mode 100755 index 0000000000000..d469584e963dc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_2_2.sh new file mode 100755 index 0000000000000..8280a68fba638 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_441_2_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_LOST +# ac_config=12 ac_tx_preset=441_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_1_1.sh new file mode 100755 index 0000000000000..bfe9632c48925 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_1_2.sh new file mode 100755 index 0000000000000..810280488e1dc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_2_1.sh new file mode 100755 index 0000000000000..e95915dde6f5c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_2_2.sh new file mode 100755 index 0000000000000..d2d9e33767ce9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_3_1.sh new file mode 100755 index 0000000000000..86e032ea713d2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_3_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_3_2.sh new file mode 100755 index 0000000000000..8cf749927de37 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_3_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_3_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_4_1.sh new file mode 100755 index 0000000000000..38e0af204f940 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_4_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_4_2.sh new file mode 100755 index 0000000000000..8fd39e174d240 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_4_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_4_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_5_1.sh new file mode 100755 index 0000000000000..cacdedf0c79cc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_5_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_5_2.sh new file mode 100755 index 0000000000000..daf738b649fba --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_5_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_5_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_6_1.sh new file mode 100755 index 0000000000000..8d5d26274eda8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_6_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_6_2.sh new file mode 100755 index 0000000000000..d960efff2d655 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_48_6_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_6_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_1_1.sh new file mode 100755 index 0000000000000..d4e294d75f958 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_1_2.sh new file mode 100755 index 0000000000000..8b0342478f879 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=8_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_2_1.sh new file mode 100755 index 0000000000000..35901246e2d60 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_2_2.sh new file mode 100755 index 0000000000000..d24274e6d8cdf --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_12_8_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=8_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_1_1.sh new file mode 100755 index 0000000000000..548727682a4c8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_1_2.sh new file mode 100755 index 0000000000000..d9284aab7bf5b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_1_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=16_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_2_1.sh new file mode 100755 index 0000000000000..6c07533b55337 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_2_2.sh new file mode 100755 index 0000000000000..751288888e623 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_16_2_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=16_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_1_1.sh new file mode 100755 index 0000000000000..671dfb1092023 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_1_2.sh new file mode 100755 index 0000000000000..11f9b16690e17 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_1_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=24_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_2_1.sh new file mode 100755 index 0000000000000..0f4a934ed1a74 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_2_2.sh new file mode 100755 index 0000000000000..79925e1d3873f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_24_2_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=24_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_1_1.sh new file mode 100755 index 0000000000000..5e2f1e7aebf03 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_1_2.sh new file mode 100755 index 0000000000000..141999869bf66 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_1_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=32_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_2_1.sh new file mode 100755 index 0000000000000..9845848311bdf --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_2_2.sh new file mode 100755 index 0000000000000..772badd7e55a5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_32_2_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=32_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_1_1.sh new file mode 100755 index 0000000000000..6aafbab867199 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_1_2.sh new file mode 100755 index 0000000000000..0d836b6fe3b93 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_1_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=441_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_2_1.sh new file mode 100755 index 0000000000000..9fb285470b26b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_2_2.sh new file mode 100755 index 0000000000000..ab6ffdee91360 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_441_2_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=441_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_1_1.sh new file mode 100755 index 0000000000000..a7fccdacaa01b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_1_2.sh new file mode 100755 index 0000000000000..afcbb2ac474d5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_1_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=48_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_2_1.sh new file mode 100755 index 0000000000000..1bbce4fd15181 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_2_2.sh new file mode 100755 index 0000000000000..e79c3d2724589 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_2_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=48_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_3_1.sh new file mode 100755 index 0000000000000..ec4f97f2e1408 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_3_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_3_2.sh new file mode 100755 index 0000000000000..58ab12f803424 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_3_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=48_3_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_4_1.sh new file mode 100755 index 0000000000000..7326b3cf84911 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_4_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_4_2.sh new file mode 100755 index 0000000000000..b61a2a76e8413 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_4_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=48_4_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_5_1.sh new file mode 100755 index 0000000000000..b6185b93587e6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_5_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_5_2.sh new file mode 100755 index 0000000000000..af0ea150dc78f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_5_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=48_5_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_6_1.sh new file mode 100755 index 0000000000000..3ab3a06deb537 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_6_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_6_2.sh new file mode 100755 index 0000000000000..9c3eca36b419c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_48_6_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=48_6_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_1_1.sh new file mode 100755 index 0000000000000..5a7020a8cb42c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_1_2.sh new file mode 100755 index 0000000000000..24a33b109a56a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_1_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=8_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_2_1.sh new file mode 100755 index 0000000000000..07a4a5efa4a79 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_2_2.sh new file mode 100755 index 0000000000000..19e65323ea799 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_13_8_2_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=13 ac_tx_preset=8_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_1_1.sh new file mode 100755 index 0000000000000..5e49328315f92 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_1_2.sh new file mode 100755 index 0000000000000..576f7c73a317c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=16_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_2_1.sh new file mode 100755 index 0000000000000..4a1605ddcf0ac --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_2_2.sh new file mode 100755 index 0000000000000..9226e93badc11 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_16_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=16_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_1_1.sh new file mode 100755 index 0000000000000..a4daa9b85d441 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_1_2.sh new file mode 100755 index 0000000000000..76f5a10f1053e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=24_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_2_1.sh new file mode 100755 index 0000000000000..2163b9fae88fa --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_2_2.sh new file mode 100755 index 0000000000000..601833b842f2c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_24_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=24_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_1_1.sh new file mode 100755 index 0000000000000..18b9f0cbf0155 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_1_2.sh new file mode 100755 index 0000000000000..7dd2da845312f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=32_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_2_1.sh new file mode 100755 index 0000000000000..c8eaf4bc144c1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_2_2.sh new file mode 100755 index 0000000000000..2845d56873bef --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_32_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=32_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_1_1.sh new file mode 100755 index 0000000000000..ef0b5ca14a8e4 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_1_2.sh new file mode 100755 index 0000000000000..dc70393277acc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_1_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_LOST +# ac_config=14 ac_tx_preset=441_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_2_1.sh new file mode 100755 index 0000000000000..5afee1ac879ab --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_2_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00) || err == ((isoal_status_t) 0x04)] +# @ WEST_TOPDIR/zephyr/subsys/bluetooth/controller/hci/hci_driver.c:513 +# ac_config=14 ac_tx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_2_2.sh new file mode 100755 index 0000000000000..7c5ce89b00103 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_441_2_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=14 ac_tx_preset=441_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_1_1.sh new file mode 100755 index 0000000000000..84dde0b3189e2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_1_2.sh new file mode 100755 index 0000000000000..bba360a59ab46 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_2_1.sh new file mode 100755 index 0000000000000..e1db79b4bfe25 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_2_2.sh new file mode 100755 index 0000000000000..97313d03ac50b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_3_1.sh new file mode 100755 index 0000000000000..3bb64ea51c654 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_3_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_3_2.sh new file mode 100755 index 0000000000000..58edc94582d70 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_3_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_3_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_4_1.sh new file mode 100755 index 0000000000000..0b5fdec1cdef4 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_4_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_4_2.sh new file mode 100755 index 0000000000000..6f8ff3903eb5d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_4_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_4_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_5_1.sh new file mode 100755 index 0000000000000..45051e4b6528e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_5_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_5_2.sh new file mode 100755 index 0000000000000..e10df3938e5a7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_5_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=14 ac_tx_preset=48_5_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_6_1.sh new file mode 100755 index 0000000000000..019f40900c593 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_6_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_6_2.sh new file mode 100755 index 0000000000000..d2dafa0c2a53a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_48_6_2.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# BT_ISO_FLAGS_ERROR +# ac_config=14 ac_tx_preset=48_6_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_1_1.sh new file mode 100755 index 0000000000000..a936774f2e84e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_1_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_1_2.sh new file mode 100755 index 0000000000000..176fb825d6e79 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_1_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=8_1_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_2_1.sh new file mode 100755 index 0000000000000..9104ca767bf12 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_2_2.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_2_2.sh new file mode 100755 index 0000000000000..26c2e2b045d6a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_14_8_2_2.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=8_2_2 ac_acc_cnt=1 Execute_cap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_16_1_1.sh new file mode 100755 index 0000000000000..7e424a027bdb5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_16_2_1.sh new file mode 100755 index 0000000000000..20caf60e125f0 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_24_1_1.sh new file mode 100755 index 0000000000000..2c1d6ba980143 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_24_2_1.sh new file mode 100755 index 0000000000000..c473de67baf45 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_32_1_1.sh new file mode 100755 index 0000000000000..0dc2ab8ae13d1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_32_2_1.sh new file mode 100755 index 0000000000000..565fdcdfdced2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_441_1_1.sh new file mode 100755 index 0000000000000..bfe607b9d783d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_441_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# bap_stream_rx.c:66): ISO receive lost +# https://github.com/zephyrproject-rtos/zephyr/issues/84303 +# ac_config=1 ac_tx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_441_2_1.sh new file mode 100755 index 0000000000000..8bc4aa89d8b3f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_441_2_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# bap_stream_rx.c:66): ISO receive lost +# https://github.com/zephyrproject-rtos/zephyr/issues/84303 +# ac_config=1 ac_tx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_1_1.sh new file mode 100755 index 0000000000000..c7214315cfb2f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_2_1.sh new file mode 100755 index 0000000000000..57fced182a602 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_3_1.sh new file mode 100755 index 0000000000000..aedd8b339d4b0 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_4_1.sh new file mode 100755 index 0000000000000..65d743d6a4c79 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_5_1.sh new file mode 100755 index 0000000000000..43bd15b121074 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_6_1.sh new file mode 100755 index 0000000000000..4645de77c80ff --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_8_1_1.sh new file mode 100755 index 0000000000000..5e13d60537fc4 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_8_2_1.sh new file mode 100755 index 0000000000000..4a3229543bf1a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_1_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_16_1_1.sh new file mode 100755 index 0000000000000..c709411c4e936 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_16_2_1.sh new file mode 100755 index 0000000000000..100a5d7ec1459 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_24_1_1.sh new file mode 100755 index 0000000000000..94db899fdbe48 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_24_2_1.sh new file mode 100755 index 0000000000000..135dc21472f35 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_32_1_1.sh new file mode 100755 index 0000000000000..27d6f538d8016 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_32_2_1.sh new file mode 100755 index 0000000000000..a03537c0207ce --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_441_1_1.sh new file mode 100755 index 0000000000000..c7dc9a28247e2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_441_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# bap_stream_rx.c:66): ISO receive lost +# https://github.com/zephyrproject-rtos/zephyr/issues/84303 +# ac_config=2 ac_rx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_441_2_1.sh new file mode 100755 index 0000000000000..e57d0e874121a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_441_2_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# bap_stream_rx.c:66): ISO receive lost +# https://github.com/zephyrproject-rtos/zephyr/issues/84303 +# ac_config=2 ac_rx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_1_1.sh new file mode 100755 index 0000000000000..2ac1d900cbcb6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_2_1.sh new file mode 100755 index 0000000000000..470dcda47a3c1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_3_1.sh new file mode 100755 index 0000000000000..a4ea6216be3f2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_4_1.sh new file mode 100755 index 0000000000000..610b6635164d9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_5_1.sh new file mode 100755 index 0000000000000..d0e8f95bd7996 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_6_1.sh new file mode 100755 index 0000000000000..43b442fc6f284 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_8_1_1.sh new file mode 100755 index 0000000000000..4acf30733d2e2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_8_2_1.sh new file mode 100755 index 0000000000000..a05d552fadd8a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_2_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_16_1_1.sh new file mode 100755 index 0000000000000..f84bc33703d40 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=16_1_1 ac_rx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_16_2_1.sh new file mode 100755 index 0000000000000..5711d22e6270e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=16_2_1 ac_rx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_24_1_1.sh new file mode 100755 index 0000000000000..2683cf7e44367 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=24_1_1 ac_rx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_24_2_1.sh new file mode 100755 index 0000000000000..e2ec72f2509b7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=24_2_1 ac_rx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_32_1_1.sh new file mode 100755 index 0000000000000..c1f41727a29bc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=32_1_1 ac_rx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_32_2_1.sh new file mode 100755 index 0000000000000..088bfb6aaa094 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=32_2_1 ac_rx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_441_1_1.sh new file mode 100755 index 0000000000000..be950f412a55f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_441_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# No sent callback on peripheral and no RX on peripheral +# https://github.com/zephyrproject-rtos/zephyr/issues/83585 +# ac_config=3 ac_tx_preset=441_1_1 ac_rx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_441_2_1.sh new file mode 100755 index 0000000000000..5de7afcb0c02d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_441_2_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# ac_config=3 ac_tx_preset=441_2_1 ac_rx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_1_1.sh new file mode 100755 index 0000000000000..5fc3d9029fcc8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# No sent callback on peripheral and no RX on peripheral +# https://github.com/zephyrproject-rtos/zephyr/issues/83585 +# ac_config=3 ac_tx_preset=48_1_1 ac_rx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_2_1.sh new file mode 100755 index 0000000000000..275d630b42cb7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_2_1 ac_rx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_3_1.sh new file mode 100755 index 0000000000000..a6c88ae2383b6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_3_1 ac_rx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_4_1.sh new file mode 100755 index 0000000000000..28c1c057ed82a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_4_1 ac_rx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_5_1.sh new file mode 100755 index 0000000000000..f7ae6de78d068 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_5_1 ac_rx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_6_1.sh new file mode 100755 index 0000000000000..1e8bf59e3129d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_6_1 ac_rx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_8_1_1.sh new file mode 100755 index 0000000000000..5b3c92257c101 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=8_1_1 ac_rx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_8_2_1.sh new file mode 100755 index 0000000000000..97daedf9a1cbd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_3_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=8_2_1 ac_rx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_16_1_1.sh new file mode 100755 index 0000000000000..2f9e8f844e106 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_16_2_1.sh new file mode 100755 index 0000000000000..8cf50130ffc41 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_24_1_1.sh new file mode 100755 index 0000000000000..910416f6a3a0d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_24_2_1.sh new file mode 100755 index 0000000000000..9d631cdf61c2f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_32_1_1.sh new file mode 100755 index 0000000000000..584169b7e3369 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_32_2_1.sh new file mode 100755 index 0000000000000..1e847378f19e9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_441_1_1.sh new file mode 100755 index 0000000000000..a10dcfebaee6c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_441_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# ac_config=4 ac_tx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_441_2_1.sh new file mode 100755 index 0000000000000..868f3e5b182c1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_441_2_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# ac_config=4 ac_tx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_1_1.sh new file mode 100755 index 0000000000000..212a0edf57a69 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_2_1.sh new file mode 100755 index 0000000000000..3e36f4786e20e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_3_1.sh new file mode 100755 index 0000000000000..f62cac838c27a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_4_1.sh new file mode 100755 index 0000000000000..027be84127ebf --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_5_1.sh new file mode 100755 index 0000000000000..fc5007159fc60 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_6_1.sh new file mode 100755 index 0000000000000..5c0c0da03be55 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_8_1_1.sh new file mode 100755 index 0000000000000..74a1aa5f2f206 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_8_2_1.sh new file mode 100755 index 0000000000000..4c3e6cbd93f87 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_4_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_16_1_1.sh new file mode 100755 index 0000000000000..3aea0273233cd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=16_1_1 ac_rx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_16_2_1.sh new file mode 100755 index 0000000000000..0260cc0d63f84 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=16_2_1 ac_rx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_24_1_1.sh new file mode 100755 index 0000000000000..a56a04f2f3ee8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=24_1_1 ac_rx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_24_2_1.sh new file mode 100755 index 0000000000000..12194bcbf689d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=24_2_1 ac_rx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_32_1_1.sh new file mode 100755 index 0000000000000..bd0b3955067fc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=32_1_1 ac_rx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_32_2_1.sh new file mode 100755 index 0000000000000..ae876d15e8398 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=32_2_1 ac_rx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_441_1_1.sh new file mode 100755 index 0000000000000..bc227afdd04aa --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_441_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# ac_config=5 ac_tx_preset=441_1_1 ac_rx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_441_2_1.sh new file mode 100755 index 0000000000000..97ee1dec72a10 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_441_2_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# bap_stream_rx.c:66): ISO receive lost +# https://github.com/zephyrproject-rtos/zephyr/issues/84303 +# ac_config=5 ac_tx_preset=441_2_1 ac_rx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_1_1.sh new file mode 100755 index 0000000000000..dc1bce1714ccb --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_1_1 ac_rx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_2_1.sh new file mode 100755 index 0000000000000..e9883f6ba88dd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_2_1 ac_rx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_3_1.sh new file mode 100755 index 0000000000000..fd4f44cf31413 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_3_1 ac_rx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_4_1.sh new file mode 100755 index 0000000000000..5d13be091467f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_4_1 ac_rx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_5_1.sh new file mode 100755 index 0000000000000..7842f2e9aa465 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_5_1 ac_rx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_6_1.sh new file mode 100755 index 0000000000000..338c5966083b5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_6_1 ac_rx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_8_1_1.sh new file mode 100755 index 0000000000000..7871353534cec --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=8_1_1 ac_rx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_8_2_1.sh new file mode 100755 index 0000000000000..2fd4374363340 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_5_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=8_2_1 ac_rx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_16_1_1.sh new file mode 100755 index 0000000000000..d303ee2a8de5b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_16_2_1.sh new file mode 100755 index 0000000000000..ca7717c7bf9e5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_24_1_1.sh new file mode 100755 index 0000000000000..9d6de26195eba --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_24_2_1.sh new file mode 100755 index 0000000000000..bc001a0e23721 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_32_1_1.sh new file mode 100755 index 0000000000000..e66d71340d676 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_32_2_1.sh new file mode 100755 index 0000000000000..aa6dede2bf40c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_441_1_1.sh new file mode 100755 index 0000000000000..b1d09148d8328 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_441_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# bap_stream_rx.c:66): ISO receive lost +# https://github.com/zephyrproject-rtos/zephyr/issues/84303 +# ac_config=6_i ac_tx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_441_2_1.sh new file mode 100755 index 0000000000000..8643671b7a83b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=6_i ac_tx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_1_1.sh new file mode 100755 index 0000000000000..ad7f1d421cb10 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_2_1.sh new file mode 100755 index 0000000000000..0ca99d97bb965 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_3_1.sh new file mode 100755 index 0000000000000..2d774b549a2b2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_4_1.sh new file mode 100755 index 0000000000000..6f74375b23aa5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_5_1.sh new file mode 100755 index 0000000000000..1529b182bb64d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_6_1.sh new file mode 100755 index 0000000000000..cc7f44b2eeb07 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_8_1_1.sh new file mode 100755 index 0000000000000..3db83bd11532e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_8_2_1.sh new file mode 100755 index 0000000000000..a9ffe5d848a22 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_i_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_16_1_1.sh new file mode 100755 index 0000000000000..4cd1fb453370e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=16_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_16_2_1.sh new file mode 100755 index 0000000000000..33d175b06b5df --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=16_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_24_1_1.sh new file mode 100755 index 0000000000000..4c602f6c6a134 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=24_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_24_2_1.sh new file mode 100755 index 0000000000000..48dd230787752 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=24_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_32_1_1.sh new file mode 100755 index 0000000000000..98337ccbf238a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=32_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_32_2_1.sh new file mode 100755 index 0000000000000..298b875f72d6d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=32_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_441_1_1.sh new file mode 100755 index 0000000000000..1642749e969b3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_441_1_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=6_ii ac_tx_preset=441_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_441_2_1.sh new file mode 100755 index 0000000000000..3b60e2fb893cc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=6_ii ac_tx_preset=441_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_1_1.sh new file mode 100755 index 0000000000000..a313a2d93d4f7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_2_1.sh new file mode 100755 index 0000000000000..3495909adec72 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_3_1.sh new file mode 100755 index 0000000000000..47c7a26ebe0d1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_3_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_4_1.sh new file mode 100755 index 0000000000000..aa47517ed4033 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_4_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_5_1.sh new file mode 100755 index 0000000000000..77d83ee3d9b44 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_5_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_6_1.sh new file mode 100755 index 0000000000000..69f3b1c5be8a2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_6_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_8_1_1.sh new file mode 100755 index 0000000000000..7a243acdaac7d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=8_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_8_2_1.sh new file mode 100755 index 0000000000000..3eb35b4600573 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_6_ii_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=8_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_16_1_1.sh new file mode 100755 index 0000000000000..6a0fc75d7879f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=16_1_1 ac_rx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_16_2_1.sh new file mode 100755 index 0000000000000..1128c09f9ca3e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=16_2_1 ac_rx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_24_1_1.sh new file mode 100755 index 0000000000000..de8bad72cfbb3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=24_1_1 ac_rx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_24_2_1.sh new file mode 100755 index 0000000000000..edf9b1456da9c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=24_2_1 ac_rx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_32_1_1.sh new file mode 100755 index 0000000000000..83975236ea494 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=32_1_1 ac_rx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_32_2_1.sh new file mode 100755 index 0000000000000..f19ede7019796 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=32_2_1 ac_rx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_441_1_1.sh new file mode 100755 index 0000000000000..b15a0e1a73e51 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_441_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# No sent callback on peripheral and no RX on peripheral +# https://github.com/zephyrproject-rtos/zephyr/issues/83585 +# ac_config=7_i ac_tx_preset=441_1_1 ac_rx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_441_2_1.sh new file mode 100755 index 0000000000000..f94cbfca5f185 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=7_i ac_tx_preset=441_2_1 ac_rx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_1_1.sh new file mode 100755 index 0000000000000..a5be79ccdc7da --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_1_1.sh @@ -0,0 +1,9 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# No sent callback on peripheral and no RX on peripheral +# https://github.com/zephyrproject-rtos/zephyr/issues/83585 +# ac_config=7_i ac_tx_preset=48_1_1 ac_rx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_2_1.sh new file mode 100755 index 0000000000000..2fd0e33098724 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=48_2_1 ac_rx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_3_1.sh new file mode 100755 index 0000000000000..bf5ce30fbb383 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=48_3_1 ac_rx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_4_1.sh new file mode 100755 index 0000000000000..b34fdb148c009 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=48_4_1 ac_rx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_5_1.sh new file mode 100755 index 0000000000000..2a0bf1064a6ef --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=48_5_1 ac_rx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_6_1.sh new file mode 100755 index 0000000000000..8699fdaed2b88 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=48_6_1 ac_rx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_8_1_1.sh new file mode 100755 index 0000000000000..b36887a4a8d28 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=8_1_1 ac_rx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_8_2_1.sh new file mode 100755 index 0000000000000..062464ed32cc7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_i_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_i ac_tx_preset=8_2_1 ac_rx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_16_1_1.sh new file mode 100755 index 0000000000000..5faa71b1a2405 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=16_1_1 ac_rx_preset=16_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_16_2_1.sh new file mode 100755 index 0000000000000..b05eed60093a8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=16_2_1 ac_rx_preset=16_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_24_1_1.sh new file mode 100755 index 0000000000000..d9bf48e3b3100 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=24_1_1 ac_rx_preset=24_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_24_2_1.sh new file mode 100755 index 0000000000000..270edb1ecd09a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=24_2_1 ac_rx_preset=24_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_32_1_1.sh new file mode 100755 index 0000000000000..3ca6a765bcab6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=32_1_1 ac_rx_preset=32_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_32_2_1.sh new file mode 100755 index 0000000000000..1c0eabe7f394a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=32_2_1 ac_rx_preset=32_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_441_1_1.sh new file mode 100755 index 0000000000000..71c0a817ee705 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_441_1_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=7_ii ac_tx_preset=441_1_1 ac_rx_preset=441_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_441_2_1.sh new file mode 100755 index 0000000000000..e15086c2719cd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=7_ii ac_tx_preset=441_2_1 ac_rx_preset=441_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_1_1.sh new file mode 100755 index 0000000000000..aa056af0081a3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_1_1 ac_rx_preset=48_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_2_1.sh new file mode 100755 index 0000000000000..8ac35992302c4 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_2_1 ac_rx_preset=48_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_3_1.sh new file mode 100755 index 0000000000000..e354b30239e2c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_3_1 ac_rx_preset=48_3_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_4_1.sh new file mode 100755 index 0000000000000..8451cb9f3ca69 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_4_1 ac_rx_preset=48_4_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_5_1.sh new file mode 100755 index 0000000000000..1011621533812 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_5_1 ac_rx_preset=48_5_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_6_1.sh new file mode 100755 index 0000000000000..a4edd9d1f6785 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_6_1 ac_rx_preset=48_6_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_8_1_1.sh new file mode 100755 index 0000000000000..1e5437dd0e30d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=8_1_1 ac_rx_preset=8_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_8_2_1.sh new file mode 100755 index 0000000000000..8e5e67f001411 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_7_ii_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=8_2_1 ac_rx_preset=8_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_16_1_1.sh new file mode 100755 index 0000000000000..413d44ddd5564 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=16_1_1 ac_rx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_16_2_1.sh new file mode 100755 index 0000000000000..b5b6687697dbd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=16_2_1 ac_rx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_24_1_1.sh new file mode 100755 index 0000000000000..031fce00a80d7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=24_1_1 ac_rx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_24_2_1.sh new file mode 100755 index 0000000000000..eed58dac77ff7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=24_2_1 ac_rx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_32_1_1.sh new file mode 100755 index 0000000000000..e0e6ff2be28ca --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=32_1_1 ac_rx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_32_2_1.sh new file mode 100755 index 0000000000000..c7114c88a7d92 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=32_2_1 ac_rx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_441_1_1.sh new file mode 100755 index 0000000000000..185296be21d3d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_441_1_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=8_i ac_tx_preset=441_1_1 ac_rx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_441_2_1.sh new file mode 100755 index 0000000000000..cff5546465e61 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=8_i ac_tx_preset=441_2_1 ac_rx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_1_1.sh new file mode 100755 index 0000000000000..159a05f767ba7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_1_1 ac_rx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_2_1.sh new file mode 100755 index 0000000000000..7ab8f030fb4e8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_2_1 ac_rx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_3_1.sh new file mode 100755 index 0000000000000..a140745f33235 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_3_1 ac_rx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_4_1.sh new file mode 100755 index 0000000000000..198f8404787f5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_4_1 ac_rx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_5_1.sh new file mode 100755 index 0000000000000..3dc187552bb9e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_5_1 ac_rx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_6_1.sh new file mode 100755 index 0000000000000..d36c2965503a1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_6_1 ac_rx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_8_1_1.sh new file mode 100755 index 0000000000000..4d6972e5d7493 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=8_1_1 ac_rx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_8_2_1.sh new file mode 100755 index 0000000000000..7042bef1556d1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_i_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=8_2_1 ac_rx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_16_1_1.sh new file mode 100755 index 0000000000000..c7e6862114daf --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=16_1_1 ac_rx_preset=16_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_16_2_1.sh new file mode 100755 index 0000000000000..1fc7f17a34e04 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=16_2_1 ac_rx_preset=16_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_24_1_1.sh new file mode 100755 index 0000000000000..b4cb5a7df2a29 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=24_1_1 ac_rx_preset=24_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_24_2_1.sh new file mode 100755 index 0000000000000..4685cd097912f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=24_2_1 ac_rx_preset=24_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_32_1_1.sh new file mode 100755 index 0000000000000..88bad3b64dabf --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=32_1_1 ac_rx_preset=32_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_32_2_1.sh new file mode 100755 index 0000000000000..f64524d931ba5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=32_2_1 ac_rx_preset=32_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_441_1_1.sh new file mode 100755 index 0000000000000..1c1dfd5e3669e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_441_1_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=8_ii ac_tx_preset=441_1_1 ac_rx_preset=441_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_441_2_1.sh new file mode 100755 index 0000000000000..d552dbf9885c8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=8_ii ac_tx_preset=441_2_1 ac_rx_preset=441_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_1_1.sh new file mode 100755 index 0000000000000..5acf20b634fa3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_1_1 ac_rx_preset=48_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_2_1.sh new file mode 100755 index 0000000000000..505d7674e8d05 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_2_1 ac_rx_preset=48_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_3_1.sh new file mode 100755 index 0000000000000..fa43f9612038d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_3_1 ac_rx_preset=48_3_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_4_1.sh new file mode 100755 index 0000000000000..ebfa690c1a64b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_4_1 ac_rx_preset=48_4_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_5_1.sh new file mode 100755 index 0000000000000..1f39aa8762f0e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_5_1 ac_rx_preset=48_5_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_6_1.sh new file mode 100755 index 0000000000000..c1673b059117e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_6_1 ac_rx_preset=48_6_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_8_1_1.sh new file mode 100755 index 0000000000000..c3334b088500f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=8_1_1 ac_rx_preset=8_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_8_2_1.sh new file mode 100755 index 0000000000000..d616487e14ef3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_8_ii_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=8_2_1 ac_rx_preset=8_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_16_1_1.sh new file mode 100755 index 0000000000000..9b4a8469acf61 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=16_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_16_2_1.sh new file mode 100755 index 0000000000000..1a233d2158084 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=16_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_24_1_1.sh new file mode 100755 index 0000000000000..7447408cc5873 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=24_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_24_2_1.sh new file mode 100755 index 0000000000000..5f0cdcd3c19b0 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=24_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_32_1_1.sh new file mode 100755 index 0000000000000..eb225965a5032 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=32_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_32_2_1.sh new file mode 100755 index 0000000000000..22abfef4781fc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=32_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_441_1_1.sh new file mode 100755 index 0000000000000..2bf70ed6ee09a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_441_1_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=9_i ac_rx_preset=441_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_441_2_1.sh new file mode 100755 index 0000000000000..edcbdb79c255b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=9_i ac_rx_preset=441_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_1_1.sh new file mode 100755 index 0000000000000..9d5adbcb600ea --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=48_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_2_1.sh new file mode 100755 index 0000000000000..162604c627066 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=48_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_3_1.sh new file mode 100755 index 0000000000000..05503f64ef864 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=48_3_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_4_1.sh new file mode 100755 index 0000000000000..d336ea30c399a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=48_4_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_5_1.sh new file mode 100755 index 0000000000000..e686a16d22305 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=48_5_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_6_1.sh new file mode 100755 index 0000000000000..253357e2a34bc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=48_6_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_8_1_1.sh new file mode 100755 index 0000000000000..bb3d32dd161c6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=8_1_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_8_2_1.sh new file mode 100755 index 0000000000000..e4496fd5afcac --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_i_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_i ac_rx_preset=8_2_1 ac_acc_cnt=1 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_16_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_16_1_1.sh new file mode 100755 index 0000000000000..ddf8fb87a5d82 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_16_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=16_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_16_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_16_2_1.sh new file mode 100755 index 0000000000000..186a19ee9433e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_16_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=16_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_24_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_24_1_1.sh new file mode 100755 index 0000000000000..45b8aeae9b789 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_24_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=24_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_24_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_24_2_1.sh new file mode 100755 index 0000000000000..641fa99cb89cf --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_24_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=24_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_32_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_32_1_1.sh new file mode 100755 index 0000000000000..6a1f48a7de80a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_32_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=32_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_32_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_32_2_1.sh new file mode 100755 index 0000000000000..0a82d2620156e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_32_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=32_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_441_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_441_1_1.sh new file mode 100755 index 0000000000000..5aaecbc990c9d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_441_1_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=9_ii ac_rx_preset=441_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_441_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_441_2_1.sh new file mode 100755 index 0000000000000..8652171bd9ecf --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_441_2_1.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ +# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 +# https://github.com/zephyrproject-rtos/zephyr/issues/83586 +# ac_config=9_ii ac_rx_preset=441_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_1_1.sh new file mode 100755 index 0000000000000..a277b930b3ba0 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=48_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_2_1.sh new file mode 100755 index 0000000000000..97b0f26e9c8c6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=48_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_3_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_3_1.sh new file mode 100755 index 0000000000000..2ad8e9c008579 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_3_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=48_3_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_4_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_4_1.sh new file mode 100755 index 0000000000000..59feb3944292a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_4_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=48_4_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_5_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_5_1.sh new file mode 100755 index 0000000000000..8fdae1bccf514 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_5_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=48_5_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_6_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_6_1.sh new file mode 100755 index 0000000000000..4e132bd7ac193 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_48_6_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=48_6_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_8_1_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_8_1_1.sh new file mode 100755 index 0000000000000..dc5be80b67946 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_8_1_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=8_1_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_8_2_1.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_8_2_1.sh new file mode 100755 index 0000000000000..3023274541607 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/cap_ac_9_ii_8_2_1.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=9_ii ac_rx_preset=8_2_1 ac_acc_cnt=2 Execute_cap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..3d6f5d966fa41 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=32_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..8677884508155 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=32_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..6d92acbf9baf0 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=32_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..d1f85dc69687d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_32_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=32_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..4dd64f875626a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..29d917d418697 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_1_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_1_gr_48_1_gs.sh new file mode 100755 index 0000000000000..d5ecec43769c1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_1_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_1_gr ac_rx_preset=48_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..6ce2abf281458 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..dc8ac042aff12 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_2_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_2_gr_48_2_gs.sh new file mode 100755 index 0000000000000..6e850f7a7f44d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_2_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_2_gr ac_rx_preset=48_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_3_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_3_gr_32_1_gs.sh new file mode 100755 index 0000000000000..d9d4e8009733c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_3_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_3_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_3_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_3_gr_48_1_gs.sh new file mode 100755 index 0000000000000..df371482827d6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_3_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_3_gr ac_rx_preset=48_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_4_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_4_gr_32_2_gs.sh new file mode 100755 index 0000000000000..24490d95c7a60 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_4_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_4_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_4_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_4_gr_48_2_gs.sh new file mode 100755 index 0000000000000..d27df6ab7d7ff --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_i_48_4_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_i ac_tx_preset=48_4_gr ac_rx_preset=48_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..adcb4a58eb775 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=32_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..f776e6047bdc5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=32_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..f3ec1d0baee91 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=32_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..a97f73ed4b0f5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_32_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=32_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..2f30eb4d69dd9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..bc21da77792fe --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_1_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_1_gr_48_1_gs.sh new file mode 100755 index 0000000000000..7053c1da842e3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_1_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_1_gr ac_rx_preset=48_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..2aa5e2d0e33f0 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..20f30ba7a94d3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_2_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_2_gr_48_2_gs.sh new file mode 100755 index 0000000000000..bb595c058a74f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_2_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_2_gr ac_rx_preset=48_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_3_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_3_gr_32_1_gs.sh new file mode 100755 index 0000000000000..808946b5123d6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_3_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_3_gr ac_rx_preset=32_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_3_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_3_gr_48_1_gs.sh new file mode 100755 index 0000000000000..83db63e8abc4f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_3_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_3_gr ac_rx_preset=48_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_4_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_4_gr_32_2_gs.sh new file mode 100755 index 0000000000000..4a3e41dbeec3f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_4_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_4_gr ac_rx_preset=32_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_4_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_4_gr_48_2_gs.sh new file mode 100755 index 0000000000000..55a9d5d6825c3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_11_ii_48_4_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=11_ii ac_tx_preset=48_4_gr ac_rx_preset=48_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_1_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_1_g.sh new file mode 100755 index 0000000000000..b9e9886dfebfc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_1_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_1_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_2_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_2_g.sh new file mode 100755 index 0000000000000..305b20dd9e3ef --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_2_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_2_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_3_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_3_g.sh new file mode 100755 index 0000000000000..263b73e0d0818 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_3_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_3_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_4_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_4_g.sh new file mode 100755 index 0000000000000..e0704c6bbcedb --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_12_48_4_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=12 ac_tx_preset=48_4_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_1_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_1_g.sh new file mode 100755 index 0000000000000..2140a7708b84a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_1_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_1_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_2_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_2_g.sh new file mode 100755 index 0000000000000..c50edb22823ec --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_2_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_2_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_3_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_3_g.sh new file mode 100755 index 0000000000000..0ba35396a2ada --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_3_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_3_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_4_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_4_g.sh new file mode 100755 index 0000000000000..1c533ce8ab6af --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_13_48_4_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=13 ac_tx_preset=48_4_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_1_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_1_g.sh new file mode 100755 index 0000000000000..4c25776279546 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_1_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_1_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_2_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_2_g.sh new file mode 100755 index 0000000000000..1c70c441667f6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_2_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_2_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_3_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_3_g.sh new file mode 100755 index 0000000000000..d38d8f22a4d07 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_3_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_3_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_4_g.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_4_g.sh new file mode 100755 index 0000000000000..e749a38a41da3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_14_48_4_g.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=14 ac_tx_preset=48_4_g ac_acc_cnt=1 Execute_gmap_broadcast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_32_1_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_32_1_gr.sh new file mode 100755 index 0000000000000..1277903a29b11 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_32_1_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=32_1_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_32_2_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_32_2_gr.sh new file mode 100755 index 0000000000000..5a07645aa6013 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_32_2_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=32_2_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_1_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_1_gr.sh new file mode 100755 index 0000000000000..0bb257a9313dd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_1_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_1_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_2_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_2_gr.sh new file mode 100755 index 0000000000000..fceb8266b5a48 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_2_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_2_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_3_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_3_gr.sh new file mode 100755 index 0000000000000..5e96028d83c67 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_3_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_3_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_4_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_4_gr.sh new file mode 100755 index 0000000000000..08adbb22451c6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_1_48_4_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=1 ac_tx_preset=48_4_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_16_1_gs.sh new file mode 100755 index 0000000000000..3d2a8352c26b3 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=16_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_16_2_gs.sh new file mode 100755 index 0000000000000..a231df482e805 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=16_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_32_1_gs.sh new file mode 100755 index 0000000000000..dbfb9026273c1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_32_2_gs.sh new file mode 100755 index 0000000000000..90e987c008344 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_48_1_gs.sh new file mode 100755 index 0000000000000..d350d2df1d842 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=48_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_48_2_gs.sh new file mode 100755 index 0000000000000..424448cf09e63 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_2_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=2 ac_rx_preset=48_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..5b5362ad35ef9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=32_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..24cfe171ac59d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=32_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..a698eef7d0b37 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=32_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..441ba97259ac4 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_32_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=32_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..66d3f46fb6720 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..c0af79ee10fd2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_1_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_1_gr_48_1_gs.sh new file mode 100755 index 0000000000000..2d48480403371 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_1_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_1_gr ac_rx_preset=48_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..64aab6d8a0a30 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..9bc433c1b9ccb --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_2_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_2_gr_48_2_gs.sh new file mode 100755 index 0000000000000..8622855fdd923 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_2_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_2_gr ac_rx_preset=48_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_3_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_3_gr_32_1_gs.sh new file mode 100755 index 0000000000000..c2fbf1da5a15d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_3_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_3_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_3_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_3_gr_48_1_gs.sh new file mode 100755 index 0000000000000..27cf0cc1b56a6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_3_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_3_gr ac_rx_preset=48_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_4_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_4_gr_32_2_gs.sh new file mode 100755 index 0000000000000..dbdc997ed547a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_4_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_4_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_4_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_4_gr_48_2_gs.sh new file mode 100755 index 0000000000000..d2505683099b5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_3_48_4_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=3 ac_tx_preset=48_4_gr ac_rx_preset=48_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_32_1_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_32_1_gr.sh new file mode 100755 index 0000000000000..44b234d467006 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_32_1_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=32_1_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_32_2_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_32_2_gr.sh new file mode 100755 index 0000000000000..3fde3db58dbe8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_32_2_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=32_2_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_1_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_1_gr.sh new file mode 100755 index 0000000000000..c50627e9a5e91 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_1_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_1_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_2_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_2_gr.sh new file mode 100755 index 0000000000000..3827a0a9b43cc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_2_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_2_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_3_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_3_gr.sh new file mode 100755 index 0000000000000..cd9db3b8246b2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_3_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_3_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_4_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_4_gr.sh new file mode 100755 index 0000000000000..af495ba256bf2 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_4_48_4_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=4 ac_tx_preset=48_4_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..81b60f01ab01a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=32_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..7835903974b18 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=32_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..1e5e27245a6aa --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=32_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..f0b215e7edcb5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_32_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=32_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..a282aaf921631 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..ddc43b992d488 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_1_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_1_gr_48_1_gs.sh new file mode 100755 index 0000000000000..9184a07fc976f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_1_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_1_gr ac_rx_preset=48_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..fadf70a2942f0 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..edb09a95f61d8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_2_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_2_gr_48_2_gs.sh new file mode 100755 index 0000000000000..dbffe402130d8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_2_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_2_gr ac_rx_preset=48_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_3_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_3_gr_32_1_gs.sh new file mode 100755 index 0000000000000..966a73704ec9f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_3_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_3_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_4_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_4_gr_32_2_gs.sh new file mode 100755 index 0000000000000..48d1d04187350 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_5_48_4_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=5 ac_tx_preset=48_4_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_32_1_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_32_1_gr.sh new file mode 100755 index 0000000000000..99e4f4b76b1a9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_32_1_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=32_1_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_32_2_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_32_2_gr.sh new file mode 100755 index 0000000000000..4569b0723c60c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_32_2_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=32_2_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_1_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_1_gr.sh new file mode 100755 index 0000000000000..a4955892a6328 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_1_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_1_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_2_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_2_gr.sh new file mode 100755 index 0000000000000..9954bec421679 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_2_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_2_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_3_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_3_gr.sh new file mode 100755 index 0000000000000..1d9ec3c2a62ab --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_3_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_3_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_4_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_4_gr.sh new file mode 100755 index 0000000000000..bddc03ad72c05 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_i_48_4_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_i ac_tx_preset=48_4_gr ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_32_1_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_32_1_gr.sh new file mode 100755 index 0000000000000..2f35ee39aa660 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_32_1_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=32_1_gr ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_32_2_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_32_2_gr.sh new file mode 100755 index 0000000000000..20cecc5743bd9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_32_2_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=32_2_gr ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_1_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_1_gr.sh new file mode 100755 index 0000000000000..b413db6b6d64d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_1_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_1_gr ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_2_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_2_gr.sh new file mode 100755 index 0000000000000..7b2c5224fb304 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_2_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_2_gr ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_3_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_3_gr.sh new file mode 100755 index 0000000000000..3367565c39792 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_3_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_3_gr ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_4_gr.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_4_gr.sh new file mode 100755 index 0000000000000..ebc7c43cc8557 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_6_ii_48_4_gr.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=6_ii ac_tx_preset=48_4_gr ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..9233460fda4fe --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=32_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..70f5d5de37d84 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=32_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..8d4f028543299 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=32_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..a8ec8cc2b0717 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_32_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=32_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..37f0f156da85e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..2794a453301a7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_1_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_1_gr_48_1_gs.sh new file mode 100755 index 0000000000000..ee281c2aadc58 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_1_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_1_gr ac_rx_preset=48_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..e5ff47c44e4bc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..b6723661b5f3f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_2_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_2_gr_48_2_gs.sh new file mode 100755 index 0000000000000..2f913bb0143d4 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_2_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_2_gr ac_rx_preset=48_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_3_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_3_gr_32_1_gs.sh new file mode 100755 index 0000000000000..dc23089ea7d24 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_3_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_3_gr ac_rx_preset=32_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_3_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_3_gr_48_1_gs.sh new file mode 100755 index 0000000000000..977b99df00e2f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_3_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_3_gr ac_rx_preset=48_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_4_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_4_gr_32_2_gs.sh new file mode 100755 index 0000000000000..82cf0273c5b47 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_4_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_4_gr ac_rx_preset=32_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_4_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_4_gr_48_2_gs.sh new file mode 100755 index 0000000000000..26b4010ab2e4f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_7_ii_48_4_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=7_ii ac_tx_preset=48_4_gr ac_rx_preset=48_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..2a679d8812892 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=32_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..d391cd9c33705 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=32_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..15da9e0883a2c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=32_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..14710e13c2ba7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_32_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=32_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..405f2102a0afc --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..52b90c7329e61 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_1_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_1_gr_48_1_gs.sh new file mode 100755 index 0000000000000..f359b616e774a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_1_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_1_gr ac_rx_preset=48_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..24246ce2736e1 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..0412f0a532c5a --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_2_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_2_gr_48_2_gs.sh new file mode 100755 index 0000000000000..64d5d005bbbc8 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_2_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_2_gr ac_rx_preset=48_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_3_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_3_gr_32_1_gs.sh new file mode 100755 index 0000000000000..40788c49beebd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_3_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_3_gr ac_rx_preset=32_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_3_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_3_gr_48_1_gs.sh new file mode 100755 index 0000000000000..2bc9a7df1907b --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_3_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_3_gr ac_rx_preset=48_1_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_4_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_4_gr_32_2_gs.sh new file mode 100755 index 0000000000000..ff8706df20a5f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_4_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_4_gr ac_rx_preset=32_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_4_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_4_gr_48_2_gs.sh new file mode 100755 index 0000000000000..ad4761648469d --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_i_48_4_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_i ac_tx_preset=48_4_gr ac_rx_preset=48_2_gs ac_acc_cnt=1 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..3dc326e84ee33 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=32_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..c3fb8465ac4b5 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=32_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..94c308684d318 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=32_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..bda9344240bbd --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_32_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=32_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_1_gr_16_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_1_gr_16_1_gs.sh new file mode 100755 index 0000000000000..28a5ec65d547e --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_1_gr_16_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_1_gr ac_rx_preset=16_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_1_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_1_gr_32_1_gs.sh new file mode 100755 index 0000000000000..764eeb6d3bab6 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_1_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_1_gr ac_rx_preset=32_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_1_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_1_gr_48_1_gs.sh new file mode 100755 index 0000000000000..cbb8cd9d66eec --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_1_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_1_gr ac_rx_preset=48_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_2_gr_16_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_2_gr_16_2_gs.sh new file mode 100755 index 0000000000000..3383e3c790395 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_2_gr_16_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_2_gr ac_rx_preset=16_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_2_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_2_gr_32_2_gs.sh new file mode 100755 index 0000000000000..69d6716959956 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_2_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_2_gr ac_rx_preset=32_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_2_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_2_gr_48_2_gs.sh new file mode 100755 index 0000000000000..9c096f6de41e9 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_2_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_2_gr ac_rx_preset=48_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_3_gr_32_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_3_gr_32_1_gs.sh new file mode 100755 index 0000000000000..fd4e00d7e88b7 --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_3_gr_32_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_3_gr ac_rx_preset=32_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_3_gr_48_1_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_3_gr_48_1_gs.sh new file mode 100755 index 0000000000000..e726d77edc54c --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_3_gr_48_1_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_3_gr ac_rx_preset=48_1_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_4_gr_32_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_4_gr_32_2_gs.sh new file mode 100755 index 0000000000000..72a11db97e74f --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_4_gr_32_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_4_gr ac_rx_preset=32_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_4_gr_48_2_gs.sh b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_4_gr_48_2_gs.sh new file mode 100755 index 0000000000000..e9ca787ae43ce --- /dev/null +++ b/tests/bsim/bluetooth/audio/test_scripts/audio_config_tests/gmap_ac_8_ii_48_4_gr_48_2_gs.sh @@ -0,0 +1,7 @@ +#!/usr/bin/env bash +# Copyright (c) 2025 Nordic Semiconductor ASA +# SPDX-License-Identifier: Apache-2.0 + +source $(dirname "$0")/_ac_common.sh + +ac_config=8_ii ac_tx_preset=48_4_gr ac_rx_preset=48_2_gs ac_acc_cnt=2 Execute_gmap_unicast_ac $@ diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_ac_12.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_ac_12.sh deleted file mode 100755 index b7fc2721d623a..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_ac_12.sh +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2024 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_broadcast_ac_12" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_12() { - printf "\n\n======== Running CAP AC_12 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_12 \ - -RealEncryption=1 -rs=23 -D=2 -argstest preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_broadcast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -# Low latency tests -Execute_AC_12 8_1_1 -Execute_AC_12 8_2_1 -Execute_AC_12 16_1_1 -Execute_AC_12 16_2_1 -Execute_AC_12 24_1_1 -Execute_AC_12 24_2_1 -Execute_AC_12 32_1_1 -Execute_AC_12 32_2_1 -Execute_AC_12 441_1_1 -Execute_AC_12 441_2_1 -Execute_AC_12 48_1_1 -Execute_AC_12 48_2_1 -Execute_AC_12 48_3_1 -Execute_AC_12 48_4_1 -Execute_AC_12 48_5_1 -Execute_AC_12 48_6_1 - -# High reliability -Execute_AC_12 8_1_2 -Execute_AC_12 8_2_2 -Execute_AC_12 16_1_2 -Execute_AC_12 16_2_2 -Execute_AC_12 24_1_2 -Execute_AC_12 24_2_2 -Execute_AC_12 32_1_2 -Execute_AC_12 32_2_2 -# Execute_AC_12 441_1_2 # BT_ISO_FLAGS_LOST -# Execute_AC_12 441_2_2 # BT_ISO_FLAGS_LOST -Execute_AC_12 48_1_2 -Execute_AC_12 48_2_2 -Execute_AC_12 48_3_2 -Execute_AC_12 48_4_2 -Execute_AC_12 48_5_2 -Execute_AC_12 48_6_2 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_ac_13.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_ac_13.sh deleted file mode 100755 index cccda168efa18..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_ac_13.sh +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2024 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_broadcast_ac_13" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_13() { - printf "\n\n======== Running CAP AC_13 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_13 \ - -RealEncryption=1 -rs=23 -D=2 -argstest preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_broadcast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_13 8_1_1 -Execute_AC_13 8_2_1 -Execute_AC_13 16_1_1 -Execute_AC_13 16_2_1 -Execute_AC_13 24_1_1 -Execute_AC_13 24_2_1 -Execute_AC_13 32_1_1 -Execute_AC_13 32_2_1 -Execute_AC_13 441_1_1 -Execute_AC_13 441_2_1 -Execute_AC_13 48_1_1 -Execute_AC_13 48_2_1 -Execute_AC_13 48_3_1 -Execute_AC_13 48_4_1 -Execute_AC_13 48_5_1 -Execute_AC_13 48_6_1 - -# High reliability -# Execute_AC_13 8_1_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 8_2_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 16_1_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 16_2_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 24_1_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 24_2_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 32_1_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 32_2_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 441_1_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 441_2_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 48_1_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 48_2_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 48_3_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 48_4_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 48_5_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_13 48_6_2 # BT_ISO_FLAGS_ERROR diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_ac_14.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_ac_14.sh deleted file mode 100755 index 1b5484a42acc3..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_ac_14.sh +++ /dev/null @@ -1,71 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2024 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_broadcast_ac_14" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_14() { - printf "\n\n======== Running CAP AC_14 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_14 \ - -RealEncryption=1 -rs=23 -D=2 -argstest preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_broadcast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -# Low latency tests -Execute_AC_14 8_1_1 -Execute_AC_14 8_2_1 -Execute_AC_14 16_1_1 -Execute_AC_14 16_2_1 -Execute_AC_14 24_1_1 -Execute_AC_14 24_2_1 -Execute_AC_14 32_1_1 -Execute_AC_14 32_2_1 -Execute_AC_14 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00) || err == ((isoal_status_t) 0x04)] -# @ WEST_TOPDIR/zephyr/subsys/bluetooth/controller/hci/hci_driver.c:513 -# Execute_AC_14 441_2_1 -Execute_AC_14 48_1_1 -Execute_AC_14 48_2_1 -Execute_AC_14 48_3_1 -Execute_AC_14 48_4_1 -Execute_AC_14 48_5_1 -Execute_AC_14 48_6_1 - -# High reliability -Execute_AC_14 8_1_2 -Execute_AC_14 8_2_2 -Execute_AC_14 16_1_2 -Execute_AC_14 16_2_2 -Execute_AC_14 24_1_2 -Execute_AC_14 24_2_2 -Execute_AC_14 32_1_2 -Execute_AC_14 32_2_2 -# Execute_AC_14 441_1_2 # BT_ISO_FLAGS_LOST -# Execute_AC_14 441_2_2 # BT_ISO_FLAGS_ERROR -Execute_AC_14 48_1_2 -Execute_AC_14 48_2_2 -Execute_AC_14 48_3_2 -Execute_AC_14 48_4_2 -# Execute_AC_14 48_5_2 # BT_ISO_FLAGS_ERROR -# Execute_AC_14 48_6_2 # BT_ISO_FLAGS_ERROR diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_inval.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_inval.sh index f177df9657a0b..66d050cd88482 100755 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_inval.sh +++ b/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_inval.sh @@ -1,7 +1,5 @@ #!/usr/bin/env bash -# # Copyright (c) 2025 Nordic Semiconductor ASA -# # SPDX-License-Identifier: Apache-2.0 SIMULATION_ID="cap_broadcast_inval" diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_update.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_update.sh index a7900beaff6af..ab522368edba9 100755 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_update.sh +++ b/tests/bsim/bluetooth/audio/test_scripts/cap_broadcast_update.sh @@ -1,7 +1,5 @@ #!/usr/bin/env bash -# # Copyright (c) 2025 Nordic Semiconductor ASA -# # SPDX-License-Identifier: Apache-2.0 SIMULATION_ID="cap_broadcast_update" diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_1.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_1.sh deleted file mode 100755 index bb2740e989f22..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_1.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_1" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_1() { - printf "\n\n======== Running CAP AC_1 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_1 \ - -RealEncryption=1 -rs=23 -D=2 -argstest sink_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_1 8_1_1 -Execute_AC_1 8_2_1 -Execute_AC_1 16_1_1 -Execute_AC_1 16_2_1 -Execute_AC_1 24_1_1 -Execute_AC_1 24_2_1 -Execute_AC_1 32_1_1 -Execute_AC_1 32_2_1 -# bap_stream_rx.c:66): ISO receive lost -# https://github.com/zephyrproject-rtos/zephyr/issues/84303 -# Execute_AC_1 441_1_1 -# bap_stream_rx.c:66): ISO receive lost -# https://github.com/zephyrproject-rtos/zephyr/issues/84303 -# Execute_AC_1 441_2_1 -Execute_AC_1 48_1_1 -Execute_AC_1 48_2_1 -Execute_AC_1 48_3_1 -Execute_AC_1 48_4_1 -Execute_AC_1 48_5_1 -Execute_AC_1 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_10.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_10.sh deleted file mode 100755 index 23ca3df3e2d06..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_10.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_10" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_10() { - printf "\n\n======== Running CAP AC_10 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_10 \ - -RealEncryption=1 -rs=23 -D=2 -argstest source_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_10 8_1_1 -Execute_AC_10 8_2_1 -Execute_AC_10 16_1_1 -Execute_AC_10 16_2_1 -Execute_AC_10 24_1_1 -Execute_AC_10 24_2_1 -Execute_AC_10 32_1_1 -Execute_AC_10 32_2_1 -# bap_stream_rx.c:66): ISO receive lost -# https://github.com/zephyrproject-rtos/zephyr/issues/84303 -# Execute_AC_10 441_1_1 -# bap_stream_rx.c:66): ISO receive lost -# https://github.com/zephyrproject-rtos/zephyr/issues/84303 -# Execute_AC_10 441_2_1 -Execute_AC_10 48_1_1 -Execute_AC_10 48_2_1 -Execute_AC_10 48_3_1 -Execute_AC_10 48_4_1 -Execute_AC_10 48_5_1 -Execute_AC_10 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_11_i.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_11_i.sh deleted file mode 100755 index 05062f85d713a..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_11_i.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_11_i" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_11_I() { - printf "\n\n======== Running CAP AC_11_I with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_11_i \ - -RealEncryption=1 -rs=23 -D=2 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_11_I 8_1_1 8_1_1 -Execute_AC_11_I 8_2_1 8_2_1 -Execute_AC_11_I 16_1_1 16_1_1 -Execute_AC_11_I 16_2_1 16_2_1 -Execute_AC_11_I 24_1_1 24_1_1 -Execute_AC_11_I 24_2_1 24_2_1 -Execute_AC_11_I 32_1_1 32_1_1 -Execute_AC_11_I 32_2_1 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_11_I 441_1_1 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_11_I 441_2_1 441_2_1 -Execute_AC_11_I 48_1_1 48_1_1 -Execute_AC_11_I 48_2_1 48_2_1 -Execute_AC_11_I 48_3_1 48_3_1 -Execute_AC_11_I 48_4_1 48_4_1 -Execute_AC_11_I 48_5_1 48_5_1 -Execute_AC_11_I 48_6_1 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_11_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_11_ii.sh deleted file mode 100755 index a868878fd5a38..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_11_ii.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_11_ii" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_11_II() { - printf "\n\n======== Running CAP AC_11_II with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_11_ii \ - -RealEncryption=1 -rs=23 -D=3 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=3 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=69 -D=3 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=3 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_11_II 8_1_1 8_1_1 -Execute_AC_11_II 8_2_1 8_2_1 -Execute_AC_11_II 16_1_1 16_1_1 -Execute_AC_11_II 16_2_1 16_2_1 -Execute_AC_11_II 24_1_1 24_1_1 -Execute_AC_11_II 24_2_1 24_2_1 -Execute_AC_11_II 32_1_1 32_1_1 -Execute_AC_11_II 32_2_1 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_11_II 441_1_1 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_11_II 441_2_1 441_2_1 -Execute_AC_11_II 48_1_1 48_1_1 -Execute_AC_11_II 48_2_1 48_2_1 -Execute_AC_11_II 48_3_1 48_3_1 -Execute_AC_11_II 48_4_1 48_4_1 -Execute_AC_11_II 48_5_1 48_5_1 -Execute_AC_11_II 48_6_1 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_2.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_2.sh deleted file mode 100755 index 649f971b65993..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_2.sh +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_2" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - - -function Execute_AC_2() { - printf "\n\n======== Running CAP AC_2 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_2 \ - -RealEncryption=1 -rs=23 -D=2 -argstest source_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_2 8_1_1 -Execute_AC_2 8_2_1 -Execute_AC_2 16_1_1 -Execute_AC_2 16_2_1 -Execute_AC_2 24_1_1 -Execute_AC_2 24_2_1 -Execute_AC_2 32_1_1 -Execute_AC_2 32_2_1 -# bap_stream_rx.c:66): ISO receive lost -# https://github.com/zephyrproject-rtos/zephyr/issues/84303 -# Execute_AC_2 441_1_1 -# bap_stream_rx.c:66): ISO receive lost -# https://github.com/zephyrproject-rtos/zephyr/issues/84303 -# Execute_AC_2 441_2_1 -Execute_AC_2 48_1_1 -Execute_AC_2 48_2_1 -Execute_AC_2 48_3_1 -Execute_AC_2 48_4_1 -Execute_AC_2 48_5_1 -Execute_AC_2 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_3.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_3.sh deleted file mode 100755 index cd495debf3ebd..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_3.sh +++ /dev/null @@ -1,58 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_3" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - - -function Execute_AC_3() { - printf "\n\n======== Running CAP AC_3 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_3 \ - -RealEncryption=1 -rs=23 -D=2 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_3 8_1_1 8_1_1 -Execute_AC_3 8_2_1 8_2_1 -Execute_AC_3 16_1_1 16_1_1 -Execute_AC_3 16_2_1 16_2_1 -Execute_AC_3 24_1_1 24_1_1 -Execute_AC_3 24_2_1 24_2_1 -Execute_AC_3 32_1_1 32_1_1 -Execute_AC_3 32_2_1 32_2_1 -# No sent callback on peripheral and no RX on peripheral -# https://github.com/zephyrproject-rtos/zephyr/issues/83585 -# Execute_AC_3 441_1_1 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_3 441_2_1 441_2_1 -# No sent callback on peripheral and no RX on peripheral -# https://github.com/zephyrproject-rtos/zephyr/issues/83585 -# Execute_AC_3 48_1_1 48_1_1 -Execute_AC_3 48_2_1 48_2_1 -Execute_AC_3 48_3_1 48_3_1 -Execute_AC_3 48_4_1 48_4_1 -Execute_AC_3 48_5_1 48_5_1 -Execute_AC_3 48_6_1 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_4.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_4.sh deleted file mode 100755 index ecbadc6b818f1..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_4.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_4" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_4() { - printf "\n\n======== Running CAP AC_4 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_4 \ - -RealEncryption=1 -rs=23 -D=2 -argstest sink_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -Execute_AC_4 8_1_1 -Execute_AC_4 8_2_1 -Execute_AC_4 16_1_1 -Execute_AC_4 16_2_1 -Execute_AC_4 24_1_1 -Execute_AC_4 24_2_1 -Execute_AC_4 32_1_1 -Execute_AC_4 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_4 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_4 441_2_1 -Execute_AC_4 48_1_1 -Execute_AC_4 48_2_1 -Execute_AC_4 48_3_1 -Execute_AC_4 48_4_1 -Execute_AC_4 48_5_1 -Execute_AC_4 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_5.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_5.sh deleted file mode 100755 index e3fda276abc55..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_5.sh +++ /dev/null @@ -1,54 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_5" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - - -function Execute_AC_5() { - printf "\n\n======== Running CAP AC_5 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_5 \ - -RealEncryption=1 -rs=23 -D=2 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -Execute_AC_5 8_1_1 8_1_1 -Execute_AC_5 8_2_1 8_2_1 -Execute_AC_5 16_1_1 16_1_1 -Execute_AC_5 16_2_1 16_2_1 -Execute_AC_5 24_1_1 24_1_1 -Execute_AC_5 24_2_1 24_2_1 -Execute_AC_5 32_1_1 32_1_1 -Execute_AC_5 32_2_1 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_5 441_1_1 441_1_1 -# bap_stream_rx.c:66): ISO receive lost -# https://github.com/zephyrproject-rtos/zephyr/issues/84303 -# Execute_AC_5 441_2_1 441_2_1 -Execute_AC_5 48_1_1 48_1_1 -Execute_AC_5 48_2_1 48_2_1 -Execute_AC_5 48_3_1 48_3_1 -Execute_AC_5 48_4_1 48_4_1 -Execute_AC_5 48_5_1 48_5_1 -Execute_AC_5 48_6_1 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_6_i.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_6_i.sh deleted file mode 100755 index 84f3e6fccf660..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_6_i.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_6_i" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_6_I() { - printf "\n\n======== Running CAP AC_6_I with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_6_i \ - -RealEncryption=1 -rs=23 -D=2 -argstest sink_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -Execute_AC_6_I 8_1_1 -Execute_AC_6_I 8_2_1 -Execute_AC_6_I 16_1_1 -Execute_AC_6_I 16_2_1 -Execute_AC_6_I 24_1_1 -Execute_AC_6_I 24_2_1 -Execute_AC_6_I 32_1_1 -Execute_AC_6_I 32_2_1 -# bap_stream_rx.c:66): ISO receive lost -# https://github.com/zephyrproject-rtos/zephyr/issues/84303 -# Execute_AC_6_I 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_6_I 441_2_1 -Execute_AC_6_I 48_1_1 -Execute_AC_6_I 48_2_1 -Execute_AC_6_I 48_3_1 -Execute_AC_6_I 48_4_1 -Execute_AC_6_I 48_5_1 -Execute_AC_6_I 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_6_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_6_ii.sh deleted file mode 100755 index ce2a3be114965..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_6_ii.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_6_ii" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_6_II() { - printf "\n\n======== Running CAP AC_6_II with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_6_ii \ - -RealEncryption=1 -rs=23 -D=3 -argstest sink_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=3 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=69 -D=3 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=3 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_6_II 8_1_1 -Execute_AC_6_II 8_2_1 -Execute_AC_6_II 16_1_1 -Execute_AC_6_II 16_2_1 -Execute_AC_6_II 24_1_1 -Execute_AC_6_II 24_2_1 -Execute_AC_6_II 32_1_1 -Execute_AC_6_II 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_6_II 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_6_II 441_2_1 -Execute_AC_6_II 48_1_1 -Execute_AC_6_II 48_2_1 -Execute_AC_6_II 48_3_1 -Execute_AC_6_II 48_4_1 -Execute_AC_6_II 48_5_1 -Execute_AC_6_II 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_7_i.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_7_i.sh deleted file mode 100755 index 55ba49c8520ee..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_7_i.sh +++ /dev/null @@ -1,57 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_7_i" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_7_I() { - printf "\n\n======== Running CAP AC_7_I with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_7_i \ - -RealEncryption=1 -rs=23 -D=2 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_7_I 8_1_1 8_1_1 -Execute_AC_7_I 8_2_1 8_2_1 -Execute_AC_7_I 16_1_1 16_1_1 -Execute_AC_7_I 16_2_1 16_2_1 -Execute_AC_7_I 24_1_1 24_1_1 -Execute_AC_7_I 24_2_1 24_2_1 -Execute_AC_7_I 32_1_1 32_1_1 -Execute_AC_7_I 32_2_1 32_2_1 -# No sent callback on peripheral and no RX on peripheral -# https://github.com/zephyrproject-rtos/zephyr/issues/83585 -# Execute_AC_7_I 441_1_1 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_7_I 441_2_1 441_2_1 -# No sent callback on peripheral and no RX on peripheral -# https://github.com/zephyrproject-rtos/zephyr/issues/83585 -# Execute_AC_7_I 48_1_1 48_1_1 -Execute_AC_7_I 48_2_1 48_2_1 -Execute_AC_7_I 48_3_1 48_3_1 -Execute_AC_7_I 48_4_1 48_4_1 -Execute_AC_7_I 48_5_1 48_5_1 -Execute_AC_7_I 48_6_1 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_7_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_7_ii.sh deleted file mode 100755 index 62a805047956b..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_7_ii.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_7_ii" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_7_II() { - printf "\n\n======== Running CAP AC_7_II with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_7_ii \ - -RealEncryption=1 -rs=23 -D=3 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=3 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=69 -D=3 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=3 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_7_II 8_1_1 8_1_1 -Execute_AC_7_II 8_2_1 8_2_1 -Execute_AC_7_II 16_1_1 16_1_1 -Execute_AC_7_II 16_2_1 16_2_1 -Execute_AC_7_II 24_1_1 24_1_1 -Execute_AC_7_II 24_2_1 24_2_1 -Execute_AC_7_II 32_1_1 32_1_1 -Execute_AC_7_II 32_2_1 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_7_II 441_1_1 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_7_II 441_2_1 441_2_1 -Execute_AC_7_II 48_1_1 48_1_1 -Execute_AC_7_II 48_2_1 48_2_1 -Execute_AC_7_II 48_3_1 48_3_1 -Execute_AC_7_II 48_4_1 48_4_1 -Execute_AC_7_II 48_5_1 48_5_1 -Execute_AC_7_II 48_6_1 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_8_i.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_8_i.sh deleted file mode 100755 index 453da880bf55a..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_8_i.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_8_i" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_8_I() { - printf "\n\n======== Running CAP AC_8_I with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_8_i \ - -RealEncryption=1 -rs=23 -D=2 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_8_I 8_1_1 8_1_1 -Execute_AC_8_I 8_2_1 8_2_1 -Execute_AC_8_I 16_1_1 16_1_1 -Execute_AC_8_I 16_2_1 16_2_1 -Execute_AC_8_I 24_1_1 24_1_1 -Execute_AC_8_I 24_2_1 24_2_1 -Execute_AC_8_I 32_1_1 32_1_1 -Execute_AC_8_I 32_2_1 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_8_I 441_1_1 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_8_I 441_2_1 441_2_1 -Execute_AC_8_I 48_1_1 48_1_1 -Execute_AC_8_I 48_2_1 48_2_1 -Execute_AC_8_I 48_3_1 48_3_1 -Execute_AC_8_I 48_4_1 48_4_1 -Execute_AC_8_I 48_5_1 48_5_1 -Execute_AC_8_I 48_6_1 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_8_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_8_ii.sh deleted file mode 100755 index af4b218f63e1c..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_8_ii.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_8_ii" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_8_II() { - printf "\n\n======== Running CAP AC_8_II with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_8_ii \ - -RealEncryption=1 -rs=23 -D=3 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=3 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=69 -D=3 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=3 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_8_II 8_1_1 8_1_1 -Execute_AC_8_II 8_2_1 8_2_1 -Execute_AC_8_II 16_1_1 16_1_1 -Execute_AC_8_II 16_2_1 16_2_1 -Execute_AC_8_II 24_1_1 24_1_1 -Execute_AC_8_II 24_2_1 24_2_1 -Execute_AC_8_II 32_1_1 32_1_1 -Execute_AC_8_II 32_2_1 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_8_II 441_1_1 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_8_II 441_2_1 441_2_1 -Execute_AC_8_II 48_1_1 48_1_1 -Execute_AC_8_II 48_2_1 48_2_1 -Execute_AC_8_II 48_3_1 48_3_1 -Execute_AC_8_II 48_4_1 48_4_1 -Execute_AC_8_II 48_5_1 48_5_1 -Execute_AC_8_II 48_6_1 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_9_i.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_9_i.sh deleted file mode 100755 index 1756ac5a23a20..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_9_i.sh +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_9_i" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_9_I() { - printf "\n\n======== Running CAP AC_9_I with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_9_i \ - -RealEncryption=1 -rs=23 -D=2 -argstest source_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_9_I 8_1_1 -Execute_AC_9_I 8_2_1 -Execute_AC_9_I 16_1_1 -Execute_AC_9_I 16_2_1 -Execute_AC_9_I 24_1_1 -Execute_AC_9_I 24_2_1 -Execute_AC_9_I 32_1_1 -Execute_AC_9_I 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_9_I 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_9_I 441_2_1 -Execute_AC_9_I 48_1_1 -Execute_AC_9_I 48_2_1 -Execute_AC_9_I 48_3_1 -Execute_AC_9_I 48_4_1 -Execute_AC_9_I 48_5_1 -Execute_AC_9_I 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_9_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_9_ii.sh deleted file mode 100755 index 717c5c50e5c4d..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/cap_unicast_ac_9_ii.sh +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="cap_unicast_ac_9_ii" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_9_II() { - printf "\n\n======== Running CAP AC_9_II with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=cap_initiator_ac_9_ii \ - -RealEncryption=1 -rs=23 -D=3 -argstest source_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=46 -D=3 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=cap_acceptor_unicast \ - -RealEncryption=1 -rs=69 -D=3 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=3 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_9_II 8_1_1 -Execute_AC_9_II 8_2_1 -Execute_AC_9_II 16_1_1 -Execute_AC_9_II 16_2_1 -Execute_AC_9_II 24_1_1 -Execute_AC_9_II 24_2_1 -Execute_AC_9_II 32_1_1 -Execute_AC_9_II 32_2_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_9_II 441_1_1 -# ASSERTION FAIL [err == ((isoal_status_t) 0x00)] @ -# zephyr/subsys/bluetooth/controller/hci/hci_driver.c:489 -# https://github.com/zephyrproject-rtos/zephyr/issues/83586 -# Execute_AC_9_II 441_2_1 -Execute_AC_9_II 48_1_1 -Execute_AC_9_II 48_2_1 -Execute_AC_9_II 48_3_1 -Execute_AC_9_II 48_4_1 -Execute_AC_9_II 48_5_1 -Execute_AC_9_II 48_6_1 diff --git a/tests/bsim/bluetooth/audio/test_scripts/csip_new_size_and_rank.sh b/tests/bsim/bluetooth/audio/test_scripts/csip_new_size_and_rank.sh index 3488018cc09bb..5516705b8ab4e 100755 --- a/tests/bsim/bluetooth/audio/test_scripts/csip_new_size_and_rank.sh +++ b/tests/bsim/bluetooth/audio/test_scripts/csip_new_size_and_rank.sh @@ -1,7 +1,5 @@ #!/usr/bin/env bash -# # Copyright (c) 2025 Nordic Semiconductor ASA -# # SPDX-License-Identifier: Apache-2.0 # CSIP test where a set coordinator connects a set members and then waits for a set size diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_broadcast_ac_12.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_broadcast_ac_12.sh deleted file mode 100755 index 7f8c28b19a35a..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_broadcast_ac_12.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2024 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_broadcast_ac_12" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_12() { - printf "\n\n======== Running GMAP AC_12 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_12 \ - -RealEncryption=1 -rs=23 -D=2 -argstest broadcast_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_broadcast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -# Low latency tests -Execute_AC_12 48_1_g -Execute_AC_12 48_2_g -Execute_AC_12 48_3_g -Execute_AC_12 48_4_g diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_broadcast_ac_13.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_broadcast_ac_13.sh deleted file mode 100755 index 7f84a8b48683e..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_broadcast_ac_13.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2024 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_broadcast_ac_13" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_13() { - printf "\n\n======== Running GMAP AC_13 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_13 \ - -RealEncryption=1 -rs=23 -D=2 -argstest broadcast_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_broadcast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -# Low latency tests -Execute_AC_13 48_1_g -Execute_AC_13 48_2_g -Execute_AC_13 48_3_g -Execute_AC_13 48_4_g diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_broadcast_ac_14.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_broadcast_ac_14.sh deleted file mode 100755 index a16adf3af1b2d..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_broadcast_ac_14.sh +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2024 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_broadcast_ac_14" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_14() { - printf "\n\n======== Running GMAP AC_14 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_14 \ - -RealEncryption=1 -rs=23 -D=2 -argstest broadcast_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=cap_acceptor_broadcast \ - -RealEncryption=1 -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -# Low latency tests -Execute_AC_14 48_1_g -Execute_AC_14 48_2_g -Execute_AC_14 48_3_g -Execute_AC_14 48_4_g diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_1.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_1.sh deleted file mode 100755 index cf5c7ea0cf56f..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_1.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_1" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_1() { - printf "\n\n======== Running GMAP AC_1 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_1 -RealEncryption=1 \ - -rs=23 -D=2 -argstest sink_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_1 32_1_gr -Execute_AC_1 32_2_gr -Execute_AC_1 48_1_gr -Execute_AC_1 48_2_gr -Execute_AC_1 48_3_gr -Execute_AC_1 48_4_gr diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_11_i.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_11_i.sh deleted file mode 100755 index 29212355a605a..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_11_i.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_11_i" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_11_I() { - printf "\n\n======== Running GMAP AC_11_I with %s and %s =========\n\n" $1 $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_11_i -RealEncryption=1 \ - -rs=23 -D=2 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_11_I 32_1_gr 16_1_gs -Execute_AC_11_I 32_2_gr 16_2_gs -Execute_AC_11_I 48_1_gr 16_1_gs -Execute_AC_11_I 48_2_gr 16_2_gs -Execute_AC_11_I 32_1_gr 32_1_gs -Execute_AC_11_I 32_2_gr 32_2_gs -Execute_AC_11_I 48_1_gr 32_1_gs -Execute_AC_11_I 48_2_gr 32_2_gs -Execute_AC_11_I 48_1_gr 48_1_gs -Execute_AC_11_I 48_2_gr 48_2_gs -Execute_AC_11_I 48_3_gr 32_1_gs -Execute_AC_11_I 48_4_gr 32_2_gs -Execute_AC_11_I 48_3_gr 48_1_gs -Execute_AC_11_I 48_4_gr 48_2_gs diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_11_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_11_ii.sh deleted file mode 100755 index fa14ae28a31ab..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_11_ii.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_11_ii" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_11_II() { - printf "\n\n======== Running GMAP AC_11_II with %s and %s =========\n\n" $1 $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_11_ii -RealEncryption=1 \ - -rs=23 -D=3 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=3 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=gmap_ugt -RealEncryption=1 \ - -rs=69 -D=3 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=3 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_11_II 32_1_gr 16_1_gs -Execute_AC_11_II 32_2_gr 16_2_gs -Execute_AC_11_II 48_1_gr 16_1_gs -Execute_AC_11_II 48_2_gr 16_2_gs -Execute_AC_11_II 32_1_gr 32_1_gs -Execute_AC_11_II 32_2_gr 32_2_gs -Execute_AC_11_II 48_1_gr 32_1_gs -Execute_AC_11_II 48_2_gr 32_2_gs -Execute_AC_11_II 48_1_gr 48_1_gs -Execute_AC_11_II 48_2_gr 48_2_gs -Execute_AC_11_II 48_3_gr 32_1_gs -Execute_AC_11_II 48_4_gr 32_2_gs -Execute_AC_11_II 48_3_gr 48_1_gs -Execute_AC_11_II 48_4_gr 48_2_gs diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_2.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_2.sh deleted file mode 100755 index 69ad6b807c2e6..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_2.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_2" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - - -function Execute_AC_2() { - printf "\n\n======== Running GMAP AC_2 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_2 -RealEncryption=1 \ - -rs=23 -D=2 -argstest source_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_2 16_1_gs -Execute_AC_2 16_2_gs -Execute_AC_2 32_1_gs -Execute_AC_2 32_2_gs -Execute_AC_2 48_1_gs -Execute_AC_2 48_2_gs diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_3.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_3.sh deleted file mode 100755 index 0883d9a5b363c..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_3.sh +++ /dev/null @@ -1,49 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_3" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - - -function Execute_AC_3() { - printf "\n\n======== Running GMAP AC_3 with %s and %s =========\n\n" $1 $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_3 -RealEncryption=1 \ - -rs=23 -D=2 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_3 32_1_gr 16_1_gs -Execute_AC_3 32_2_gr 16_2_gs -Execute_AC_3 48_1_gr 16_1_gs -Execute_AC_3 48_2_gr 16_2_gs -Execute_AC_3 32_1_gr 32_1_gs -Execute_AC_3 32_2_gr 32_2_gs -Execute_AC_3 48_1_gr 32_1_gs -Execute_AC_3 48_2_gr 32_2_gs -Execute_AC_3 48_1_gr 48_1_gs -Execute_AC_3 48_2_gr 48_2_gs -Execute_AC_3 48_3_gr 32_1_gs -Execute_AC_3 48_4_gr 32_2_gs -Execute_AC_3 48_3_gr 48_1_gs -Execute_AC_3 48_4_gr 48_2_gs diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_4.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_4.sh deleted file mode 100755 index be127ae7bb3f8..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_4.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_4" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_4() { - printf "\n\n======== Running GMAP AC_4 with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_4 -RealEncryption=1 \ - -rs=23 -D=2 -argstest sink_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_4 32_1_gr -Execute_AC_4 32_2_gr -Execute_AC_4 48_1_gr -Execute_AC_4 48_2_gr -Execute_AC_4 48_3_gr -Execute_AC_4 48_4_gr diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_5.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_5.sh deleted file mode 100755 index b5cf2c93421ff..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_5.sh +++ /dev/null @@ -1,47 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_5" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - - -function Execute_AC_5() { - printf "\n\n======== Running GMAP AC_5 with %s and %s =========\n\n" $1 $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_5 -RealEncryption=1 \ - -rs=23 -D=2 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_5 32_1_gr 16_1_gs -Execute_AC_5 32_2_gr 16_2_gs -Execute_AC_5 48_1_gr 16_1_gs -Execute_AC_5 48_2_gr 16_2_gs -Execute_AC_5 32_1_gr 32_1_gs -Execute_AC_5 32_2_gr 32_2_gs -Execute_AC_5 48_1_gr 32_1_gs -Execute_AC_5 48_2_gr 32_2_gs -Execute_AC_5 48_1_gr 48_1_gs -Execute_AC_5 48_2_gr 48_2_gs -Execute_AC_5 48_3_gr 32_1_gs -Execute_AC_5 48_4_gr 32_2_gs diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_6_i.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_6_i.sh deleted file mode 100755 index 2fa042b5b2cb6..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_6_i.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_6_i" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_6_I() { - printf "\n\n======== Running GMAP AC_6_I with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_6_i -RealEncryption=1 \ - -rs=23 -D=2 -argstest sink_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_6_I 32_1_gr -Execute_AC_6_I 32_2_gr -Execute_AC_6_I 48_1_gr -Execute_AC_6_I 48_2_gr -Execute_AC_6_I 48_3_gr -Execute_AC_6_I 48_4_gr diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_6_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_6_ii.sh deleted file mode 100755 index ece76364ab083..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_6_ii.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_6_ii" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_6_II() { - printf "\n\n======== Running GMAP AC_6_II with %s =========\n\n" $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_6_ii -RealEncryption=1 \ - -rs=23 -D=3 -argstest sink_preset $1 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=3 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=gmap_ugt -RealEncryption=1 \ - -rs=69 -D=3 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=3 -sim_length=60e6 ${@:2} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_6_II 32_1_gr -Execute_AC_6_II 32_2_gr -Execute_AC_6_II 48_1_gr -Execute_AC_6_II 48_2_gr -Execute_AC_6_II 48_3_gr -Execute_AC_6_II 48_4_gr diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_7_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_7_ii.sh deleted file mode 100755 index edb6cbc69fd62..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_7_ii.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_7_ii" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_7_II() { - printf "\n\n======== Running GMAP AC_7_II with %s and %s =========\n\n" $1 $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_7_ii -RealEncryption=1 \ - -rs=23 -D=3 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=3 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=gmap_ugt -RealEncryption=1 \ - -rs=69 -D=3 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=3 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_7_II 32_1_gr 16_1_gs -Execute_AC_7_II 32_2_gr 16_2_gs -Execute_AC_7_II 48_1_gr 16_1_gs -Execute_AC_7_II 48_2_gr 16_2_gs -Execute_AC_7_II 32_1_gr 32_1_gs -Execute_AC_7_II 32_2_gr 32_2_gs -Execute_AC_7_II 48_1_gr 32_1_gs -Execute_AC_7_II 48_2_gr 32_2_gs -Execute_AC_7_II 48_1_gr 48_1_gs -Execute_AC_7_II 48_2_gr 48_2_gs -Execute_AC_7_II 48_3_gr 32_1_gs -Execute_AC_7_II 48_4_gr 32_2_gs -Execute_AC_7_II 48_3_gr 48_1_gs -Execute_AC_7_II 48_4_gr 48_2_gs diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_8_i.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_8_i.sh deleted file mode 100755 index ced2d67d7546e..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_8_i.sh +++ /dev/null @@ -1,48 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_8_i" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_8_I() { - printf "\n\n======== Running GMAP AC_8_I with %s and %s =========\n\n" $1 $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_8_i -RealEncryption=1 \ - -rs=23 -D=2 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=2 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=2 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_8_I 32_1_gr 16_1_gs -Execute_AC_8_I 32_2_gr 16_2_gs -Execute_AC_8_I 48_1_gr 16_1_gs -Execute_AC_8_I 48_2_gr 16_2_gs -Execute_AC_8_I 32_1_gr 32_1_gs -Execute_AC_8_I 32_2_gr 32_2_gs -Execute_AC_8_I 48_1_gr 32_1_gs -Execute_AC_8_I 48_2_gr 32_2_gs -Execute_AC_8_I 48_1_gr 48_1_gs -Execute_AC_8_I 48_2_gr 48_2_gs -Execute_AC_8_I 48_3_gr 32_1_gs -Execute_AC_8_I 48_4_gr 32_2_gs -Execute_AC_8_I 48_3_gr 48_1_gs -Execute_AC_8_I 48_4_gr 48_2_gs diff --git a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_8_ii.sh b/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_8_ii.sh deleted file mode 100755 index 14d56906b5af4..0000000000000 --- a/tests/bsim/bluetooth/audio/test_scripts/gmap_unicast_ac_8_ii.sh +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/env bash -# -# Copyright (c) 2023 Nordic Semiconductor ASA -# -# SPDX-License-Identifier: Apache-2.0 - -SIMULATION_ID="gmap_unicast_ac_8_ii" -VERBOSITY_LEVEL=2 -EXECUTE_TIMEOUT=60 - -source ${ZEPHYR_BASE}/tests/bsim/sh_common.source - -cd ${BSIM_OUT_PATH}/bin - -function Execute_AC_8_II() { - printf "\n\n======== Running GMAP AC_8_II with %s and %s =========\n\n" $1 $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=0 -testid=gmap_ugg_ac_8_ii -RealEncryption=1 \ - -rs=23 -D=3 -argstest sink_preset $1 source_preset $2 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=1 -testid=gmap_ugt -RealEncryption=1 \ - -rs=46 -D=3 - - Execute ./bs_${BOARD_TS}_tests_bsim_bluetooth_audio_prj_conf \ - -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} -d=2 -testid=gmap_ugt -RealEncryption=1 \ - -rs=69 -D=3 - - # Simulation time should be larger than the WAIT_TIME in common.h - Execute ./bs_2G4_phy_v1 -v=${VERBOSITY_LEVEL} -s=${SIMULATION_ID} \ - -D=3 -sim_length=60e6 ${@:3} - - wait_for_background_jobs -} - -set -e # Exit on error - -Execute_AC_8_II 32_1_gr 16_1_gs -Execute_AC_8_II 32_2_gr 16_2_gs -Execute_AC_8_II 48_1_gr 16_1_gs -Execute_AC_8_II 48_2_gr 16_2_gs -Execute_AC_8_II 32_1_gr 32_1_gs -Execute_AC_8_II 32_2_gr 32_2_gs -Execute_AC_8_II 48_1_gr 32_1_gs -Execute_AC_8_II 48_2_gr 32_2_gs -Execute_AC_8_II 48_1_gr 48_1_gs -Execute_AC_8_II 48_2_gr 48_2_gs -Execute_AC_8_II 48_3_gr 32_1_gs -Execute_AC_8_II 48_4_gr 32_2_gs -Execute_AC_8_II 48_3_gr 48_1_gs -Execute_AC_8_II 48_4_gr 48_2_gs