1#!/usr/bin/env bash 2# Copyright (c) 2024 Nordic Semiconductor 3# SPDX-License-Identifier: Apache-2.0 4 5set -eu 6 7source ${ZEPHYR_BASE}/tests/bsim/sh_common.source 8 9test_name="$(guess_test_long_name)" 10 11simulation_id=${test_name} 12 13verbosity_level=2 14 15SIM_LEN_US=$((2 * 1000 * 1000)) 16 17test_exe="${BSIM_OUT_PATH}/bin/bs_${BOARD_TS}_${test_name}_prj_conf" 18 19cd ${BSIM_OUT_PATH}/bin 20 21Execute "${test_exe}" -v=${verbosity_level} -s=${simulation_id} -d=0 -rs=420 -testid=advertiser 22Execute "${test_exe}" -v=${verbosity_level} -s=${simulation_id} -d=1 -rs=69 -testid=scanner 23 24Execute ./bs_2G4_phy_v1 -v=${verbosity_level} -s=${simulation_id} -D=2 -sim_length=${SIM_LEN_US} $@ 25 26wait_for_background_jobs 27