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 that a maximum length SDU can be processed with SAR, 8# even with transmitter and receiver configured with longest possible 9# intervals and default retransmission counts. 10# Test procedure: 11# 1. Initialize Client and Server instances. 12# 2. Bind "dummy" vendor model to both instances. 13# 3. Configure SAR transmitter and receiver states. 14# 4. The Client sends a Get-message with a maximum length SDU, targeting the server. 15# 5. The Server responds with a maximum length SDU Status-message. 16# 6. The test passes when the Client successfully receives the Status response. 17RunTest sar_slow_test \ 18 sar_cli_max_len_sdu_slow_send sar_srv_max_len_sdu_slow_receive 19 20overlay=overlay_psa_conf 21RunTest sar_slow_test_psa \ 22 sar_cli_max_len_sdu_slow_send sar_srv_max_len_sdu_slow_receive 23