tests/bsim/bluetooth/ll/conn: Use common scripts
Use the common functions instead of replicating functionality and do a minor cleanup Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
This commit is contained in:
parent
ab3e4d4bbe
commit
42d97fdf99
1 changed files with 3 additions and 19 deletions
|
@ -1,26 +1,13 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
# Copyright 2018 Oticon A/S
|
# Copyright 2018 Oticon A/S
|
||||||
# SPDX-License-Identifier: Apache-2.0
|
# SPDX-License-Identifier: Apache-2.0
|
||||||
|
source ${ZEPHYR_BASE}/tests/bsim/sh_common.source
|
||||||
|
|
||||||
# Basic connection test: a central connects to a peripheral
|
# Basic connection test: a central connects to a peripheral
|
||||||
# using the split controller (ULL LLL) - central disconnects and reconnects 20 times
|
# using the split controller (ULL LLL) - central disconnects and reconnects 20 times
|
||||||
simulation_id="basic_conn20_split"
|
simulation_id="basic_conn20_split"
|
||||||
verbosity_level=2
|
verbosity_level=2
|
||||||
process_ids=""; exit_code=0
|
EXECUTE_TIMEOUT=60
|
||||||
|
|
||||||
function Execute(){
|
|
||||||
if [ ! -f $1 ]; then
|
|
||||||
echo -e " \e[91m`pwd`/`basename $1` cannot be found (did you forget to\
|
|
||||||
compile it?)\e[39m"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
timeout 55 $@ & process_ids="$process_ids $!"
|
|
||||||
}
|
|
||||||
|
|
||||||
: "${BSIM_OUT_PATH:?BSIM_OUT_PATH must be defined}"
|
|
||||||
|
|
||||||
#Give a default value to BOARD if it does not have one yet:
|
|
||||||
BOARD="${BOARD:-nrf52_bsim}"
|
|
||||||
|
|
||||||
cd ${BSIM_OUT_PATH}/bin
|
cd ${BSIM_OUT_PATH}/bin
|
||||||
|
|
||||||
|
@ -35,7 +22,4 @@ Execute ./bs_${BOARD}_tests_bsim_bluetooth_ll_conn_prj_split_conf\
|
||||||
Execute ./bs_2G4_phy_v1 -v=${verbosity_level} -s=${simulation_id} \
|
Execute ./bs_2G4_phy_v1 -v=${verbosity_level} -s=${simulation_id} \
|
||||||
-D=2 -sim_length=100e6 $@
|
-D=2 -sim_length=100e6 $@
|
||||||
|
|
||||||
for process_id in $process_ids; do
|
wait_for_background_jobs
|
||||||
wait $process_id || let "exit_code=$?"
|
|
||||||
done
|
|
||||||
exit $exit_code #the last exit code != 0
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue