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>
18 lines
331 B
Bash
Executable File
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
|