Increase the EXECUTION_TIMEOUT (real time timeout at which the test will be killed), so we have more margin for CI. Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
24 lines
586 B
Bash
Executable File
24 lines
586 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2024 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
set -eu -x
|
|
|
|
source ${ZEPHYR_BASE}/tests/bsim/sh_common.source
|
|
EXECUTE_TIMEOUT=120
|
|
|
|
simulation_id="timeout"
|
|
dev_exe=bs_${BOARD_TS}_$(guess_test_long_name)_prj_conf
|
|
args_all=(-s=${simulation_id} -D=2)
|
|
args_dev=(-v=2 -RealEncryption=1 -testid=the_test)
|
|
|
|
cd "${BSIM_OUT_PATH}/bin"
|
|
|
|
Execute ./${dev_exe} "${args_all[@]}" "${args_dev[@]}" -d=0
|
|
|
|
Execute ./${dev_exe} "${args_all[@]}" "${args_dev[@]}" -d=1
|
|
|
|
Execute ./bs_2G4_phy_v1 "${args_all[@]}" -sim_length=200e6
|
|
|
|
wait_for_background_jobs
|