As TinyCrypt gets deprecated, we need to remove all bsim tests that use it. This commit switches all Bluetooth mesh bsim tests to PSA as a default crypto backend. This includes: - removing `CONFIG_BT_MESH_USES_TINYCRYPT` as PSA is default crypto backend for mesh. `CONFIG_BT_MESH_USES_MBEDTLS_PSA` is not required to be enabled; - merging `overlay_psa.conf` into `prj.conf` as this configuration becomes default for all mesh bsim tests; - merging `overlay_ss.conf` into `overlay_pst.conf` as secure storage is required for running persistent storage bsim tests with PSA; Signed-off-by: Pavel Vasilyev <pavel.vasilyev@nordicsemi.no>
17 lines
698 B
Bash
Executable File
17 lines
698 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2023 Nordic Semiconductor
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
|
|
|
|
# Test that an Opcode aggregated message can be sent and received on loopback.
|
|
#
|
|
# Test procedure:
|
|
# 1. The device initializes both Opcode aggregator server and client.
|
|
# The device starts an Opcode aggregator sequence and populates the buffer.
|
|
# 2. The device starts sending the sequence on loopback.
|
|
# 3. The device verifies that the sequence is correctly received by the server model.
|
|
# 4. The device confirms that the client model received all status messages.
|
|
RunTest mesh_op_agg_model_coex_loopback \
|
|
op_agg_dut_model_coex_loopback
|