zephyr/tests/bsim/bluetooth/audio/test_scripts/_bap_broadcast.sh
Emil Gydesen 38a32b768a tests: Bluetooth: BAP: Add broadcast tests with multiple subgroups
Add 4 new tests for BAP broadcast:
1) One subgroup with one stream per subgroup
2) One subgroup with two streams per subgroup
3) Two subgroups with one stream per subgroup
4) Two subgroup with two streams per subgroup

To support these, the number of broadcast streams and data paths
was updated to be up to 4.

Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
2024-12-27 12:36:40 +01:00

18 lines
331 B
Bash
Executable File

#!/usr/bin/env bash
#
# Copyright (c) 2024 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
dir_path=$(dirname "$0")
set -e # Exit on error
# Run all bap_broadcast_audio* tests
for file in "$dir_path"/bap_broadcast_audio*.sh; do
if [ -f "$file" ]; then
echo "Running $file"
$file
fi
done