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)"
10simulation_id=${test_name}
11verbosity_level=2
12EXECUTE_TIMEOUT=120
13SIM_LEN_US=$((2 * 1000 * 1000))
14
15test_exe="${BSIM_OUT_PATH}/bin/bs_${BOARD_TS}_${test_name}_prj_conf"
16
17cd ${BSIM_OUT_PATH}/bin
18
19Execute "${test_exe}" -v=${verbosity_level} -s=${simulation_id} -d=0 \
20    -testid=l2cap/einprogress/dut
21Execute "${test_exe}" -v=${verbosity_level} -s=${simulation_id} -d=1 \
22    -testid=l2cap/einprogress/tester
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