1#!/usr/bin/env bash 2# Copyright 2023 Nordic Semiconductor 3# SPDX-License-Identifier: Apache-2.0 4 5source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh 6 7# Test Private Beacon cache 8# 9# Test procedure: 10# 0. RX device starts monitoring all accepted private beacon messages. 11# 1. TX device sends two identical private beacons to the RX device. 12# 2. TX device sends a secondary private beacons to the RX device, marking the end of the test. 13# 3. RX device verifies that only one of the two identical beacons was processed. 14 15RunTest mesh_priv_beacon_cache \ 16 beacon_tx_priv_beacon_cache \ 17 beacon_rx_priv_beacon_cache 18 19overlay=overlay_psa_conf 20RunTest mesh_priv_beacon_cache \ 21 beacon_tx_priv_beacon_cache \ 22 beacon_rx_priv_beacon_cache 23