This commit splits the CAP and GMAP audio configuration (AC) tests into separate scripts. The purpose of this is to reduce the runtime of the individual scripts (some, like the cap_ac_11, tests takes a long time to run all combinations). This split also improves support for running them in parallel. An additional, positive, side effect of this is that the logs will also be smaller per run. The new scripts can be run directly, or via the e.g. _cap_ac_X.sh scripts that run entire audio configuration for all presets. The design of how the parameters are passed around, are based on variable instead of function arguments. Effectively they can be used for the same thing, but variables have the advantage that it is easier to deal with longer names, and that any of the test scripts can be called with additional arguments that can, when using variables, easily be forwarded to the call to Execute for the PHY in the _ac_common.sh. Signed-off-by: Emil Gydesen <emil.gydesen@nordicsemi.no>
16 lines
311 B
Bash
Executable File
16 lines
311 B
Bash
Executable File
#!/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
|
|
|
|
# Run all cap_unicast* tests
|
|
for file in "$dir_path"/cap_unicast*.sh; do
|
|
if [ -f "$file" ]; then
|
|
echo "Running $file"
|
|
$file
|
|
fi
|
|
done
|