1#!/usr/bin/env bash
2# Copyright (c) 2025 Nordic Semiconductor ASA
3# SPDX-License-Identifier: Apache-2.0
4
5dir_path=$(dirname "$0")
6
7set -e # Exit on error
8
9# Run all cap_broadcast* tests
10for file in "$dir_path"/cap_broadcast*.sh; do
11    if [ -f "$file" ]; then
12        echo "Running $file"
13        $file
14    fi
15done
16