1#!/usr/bin/env bash 2# Copyright 2021 Nordic Semiconductor 3# SPDX-License-Identifier: Apache-2.0 4 5source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh 6 7overlay=overlay_pst_conf 8RunTest mesh_replay_attack \ 9 rpc_tx_immediate_replay_attack \ 10 rpc_rx_immediate_replay_attack -flash=../results/mesh_replay_attack/flash.bin -flash_erase 11 12overlay=overlay_pst_conf 13RunTest mesh_replay_attack \ 14 rpc_tx_power_replay_attack \ 15 rpc_rx_power_replay_attack -flash=../results/mesh_replay_attack/flash.bin -flash_rm 16 17overlay="overlay_pst_conf_overlay_psa_conf" 18RunTest mesh_replay_attack_psa \ 19 rpc_tx_immediate_replay_attack \ 20 rpc_rx_immediate_replay_attack -flash=../results/mesh_replay_attack_psa/flash.bin -flash_erase 21 22overlay="overlay_pst_conf_overlay_psa_conf" 23RunTest mesh_replay_attack_psa \ 24 rpc_tx_power_replay_attack \ 25 rpc_rx_power_replay_attack -flash=../results/mesh_replay_attack_psa/flash.bin -flash_rm 26