Skip to content

Commit 2a89430

Browse files
committed
tests: bluetooth: mesh: remove tinycrypt support from bsim mesh
Commit removes Tinycrypt support from bsim mesh tests as well as optimizes test suite number and features. Several tests were added only for Tinycrypt library and were never run with PSA Crypto. Especially these are tests related to advertiser or suspending functionality. Mesh has two advertiser implementations. Some legacy advertiser functionality was NEVER run in combination with PSA. Furthermore, the low latency feature of the legacy advertiser has been added a long time ago to suitable test suites like transport and friendship data transmission. Later when another tests were added those required legacy advertiser checking the low latency overlay has been used instead of adding pure legacy advertiser. That caused a situation where actually the low latency advertiser has never been tested without the low latency feature. And even worse case, we started adapting the mesh tests to the low latency feature. These 2 maintenance mistakes: Running some tests only with Tinycrypt Using the legacy advertiser always wtih the low latency feature caused the situation where it started multiplying misbehavior. Some tests became fully not functional after removing Tinycrypt library. I'm talking about these two: gatt_suspend_resume.sh gatt_suspend_disable_resume.sh The legacy advertiser does not send data after switching from gatt to adv with low latency feature. The low latency overlay was changed to the legacy overlay everywhere where the low latency feature is not tested. If we want to test behavior of the legacy advertiser, then the only legacy advertiser should be added. Nothing more. Signed-off-by: Aleksandr Khromykh <[email protected]>
1 parent e48c907 commit 2a89430

File tree

166 files changed

+32
-927
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+32
-927
lines changed

tests/bsim/bluetooth/mesh/compile.sh

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,15 @@ app=tests/bsim/bluetooth/mesh conf_overlay=overlay_pst.conf compile
1515
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_gatt.conf compile
1616
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_gatt_separate.conf compile
1717
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_low_lat.conf compile
18-
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_psa.conf compile
18+
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_legacy.conf compile
1919
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_workq_sys.conf compile
2020
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_multi_adv_sets.conf compile
2121
app=tests/bsim/bluetooth/mesh conf_overlay=overlay_lpn_scan_on.conf compile
22-
app=tests/bsim/bluetooth/mesh \
23-
conf_overlay="overlay_pst.conf;overlay_ss.conf;overlay_psa.conf" compile
24-
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_gatt.conf;overlay_psa.conf" compile
2522
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_gatt.conf;overlay_workq_sys.conf" compile
26-
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_low_lat.conf;overlay_psa.conf" compile
27-
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_gatt.conf;overlay_low_lat.conf" compile
23+
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_gatt.conf;overlay_legacy.conf" compile
2824
app=tests/bsim/bluetooth/mesh conf_overlay="overlay_pst.conf;overlay_gatt.conf" compile
2925
app=tests/bsim/bluetooth/mesh \
3026
conf_overlay="overlay_gatt.conf;overlay_multi_adv_sets.conf" compile
31-
app=tests/bsim/bluetooth/mesh \
32-
conf_overlay="overlay_pst.conf;overlay_ss.conf;overlay_gatt.conf;overlay_psa.conf" compile
3327
app=tests/bsim/bluetooth/mesh \
3428
conf_overlay="overlay_pst.conf;overlay_gatt.conf;overlay_workq_sys.conf" compile
3529
wait_for_background_jobs
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CONFIG_BT_EXT_ADV=n

tests/bsim/bluetooth/mesh/overlay_psa.conf

Lines changed: 0 additions & 5 deletions
This file was deleted.

tests/bsim/bluetooth/mesh/overlay_pst.conf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ CONFIG_FLASH=y
44
CONFIG_FLASH_MAP=y
55
CONFIG_NVS=y
66

7+
CONFIG_SECURE_STORAGE=y
8+
79
CONFIG_BT_PERIPHERAL=y
810
CONFIG_BT_MESH_GATT_PROXY=y
911
CONFIG_BT_MESH_PB_GATT=y

tests/bsim/bluetooth/mesh/overlay_ss.conf

Lines changed: 0 additions & 1 deletion
This file was deleted.

tests/bsim/bluetooth/mesh/prj.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ CONFIG_BT_TESTING=y
7474
# Needed for RPR tests due to huge amount of retransmitted messages
7575
CONFIG_BT_MESH_MSG_CACHE_SIZE=64
7676

77-
# Enable tinycrypt as a crypto backend
78-
CONFIG_BT_MESH_USES_TINYCRYPT=y
77+
# Increase the number of key slots in PSA Crypto core
78+
CONFIG_MBEDTLS_PSA_KEY_SLOT_COUNT=64

tests/bsim/bluetooth/mesh/src/test_provision.c

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,7 @@
1313
#include <bs_pc_backchannel.h>
1414
#include <time_machine.h>
1515

16-
#if defined CONFIG_BT_MESH_USES_MBEDTLS_PSA
1716
#include <psa/crypto.h>
18-
#elif defined CONFIG_BT_MESH_USES_TINYCRYPT
19-
#include <tinycrypt/constants.h>
20-
#include <tinycrypt/ecc.h>
21-
#include <tinycrypt/ecc_dh.h>
22-
#else
23-
#error "Unknown crypto library has been chosen"
24-
#endif
2517

2618
#include <zephyr/sys/byteorder.h>
2719

@@ -527,7 +519,6 @@ static void oob_auth_set(int test_step)
527519
prov.input_actions = oob_auth_test_vector[test_step].input_actions;
528520
}
529521

530-
#if defined CONFIG_BT_MESH_USES_MBEDTLS_PSA
531522
static void generate_oob_key_pair(void)
532523
{
533524
psa_key_attributes_t key_attributes = PSA_KEY_ATTRIBUTES_INIT;
@@ -562,12 +553,6 @@ static void generate_oob_key_pair(void)
562553

563554
memcpy(public_key_be, public_key_repr + 1, 64);
564555
}
565-
#elif defined CONFIG_BT_MESH_USES_TINYCRYPT
566-
static void generate_oob_key_pair(void)
567-
{
568-
ASSERT_TRUE(uECC_make_key(public_key_be, private_key_be, uECC_secp256r1()));
569-
}
570-
#endif
571556

572557
static void oob_device(bool use_oob_pk)
573558
{

tests/bsim/bluetooth/mesh/src/test_suspend.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,14 +194,9 @@ extern const struct bt_mesh_comp comp;
194194
* with a 100ms interval.
195195
*/
196196
static struct bt_mesh_test_gatt gatt_param = {
197-
#if defined(CONFIG_BT_EXT_ADV)
198197
/* (total transmit duration) / (transmit interval) */
199198
.transmits = 1500 / 100,
200199
.interval = 100,
201-
#else
202-
.transmits = 2000 / 1000,
203-
.interval = 1000,
204-
#endif
205200
.service = MESH_SERVICE_PROVISIONING,
206201
};
207202

tests/bsim/bluetooth/mesh/tests_scripts/access/access_cancel.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest mesh_access_publication_cancel \
88
access_tx_cancel access_rx_cancel
9-
10-
overlay=overlay_psa_conf
11-
RunTest mesh_access_publication_cancel_psa \
12-
access_tx_cancel access_rx_cancel

tests/bsim/bluetooth/mesh/tests_scripts/access/access_ext_sub.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest mesh_access_extended_model_subs \
88
access_tx_ext_model access_sub_ext_model
9-
10-
overlay=overlay_psa_conf
11-
RunTest mesh_access_extended_model_subs_psa \
12-
access_tx_ext_model access_sub_ext_model

tests/bsim/bluetooth/mesh/tests_scripts/access/access_ext_sub_cap.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,3 @@
55
source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest mesh_access_extended_model_subs_cap access_sub_capacity_ext_model
8-
9-
overlay=overlay_psa_conf
10-
RunTest mesh_access_extended_model_subs_cap_psa access_sub_capacity_ext_model

tests/bsim/bluetooth/mesh/tests_scripts/access/access_period.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest mesh_access_per_pub \
88
access_tx_period access_rx_period
9-
10-
overlay=overlay_psa_conf
11-
RunTest mesh_access_per_pub_psa \
12-
access_tx_period access_rx_period

tests/bsim/bluetooth/mesh/tests_scripts/access/access_period_delayable.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest mesh_access_pub_period_delayable_retr \
88
access_tx_period_delayable access_rx_period_delayable
9-
10-
overlay=overlay_psa_conf
11-
RunTest mesh_access_pub_period_delayable_retr_psa \
12-
access_tx_period_delayable access_rx_period_delayable

tests/bsim/bluetooth/mesh/tests_scripts/access/access_transmit.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest mesh_access_pub_retr \
88
access_tx_transmit access_rx_transmit
9-
10-
overlay=overlay_psa_conf
11-
RunTest mesh_access_pub_retr_psa \
12-
access_tx_period access_rx_period

tests/bsim/bluetooth/mesh/tests_scripts/access/access_transmit_delayable.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest mesh_access_pub_transmit_delayable_retr \
88
access_tx_transmit_delayable access_rx_transmit_delayable
9-
10-
overlay=overlay_psa_conf
11-
RunTest mesh_access_pub_transmit_delayable_retr_psa \
12-
access_tx_transmit_delayable access_rx_transmit_delayable

tests/bsim/bluetooth/mesh/tests_scripts/advertiser/disable.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
3434
RunTest mesh_adv_disable adv_tx_disable adv_rx_disable
3535

3636
# Low latency overlay uses legacy advertiser
37-
overlay=overlay_low_lat_conf
38-
RunTest mesh_adv_disable adv_tx_disable adv_rx_disable
37+
overlay=overlay_legacy_conf
38+
RunTest mesh_adv_disable_legacy adv_tx_disable adv_rx_disable
3939

4040
overlay=overlay_workq_sys_conf
4141
RunTest mesh_adv_disable_workq adv_tx_disable adv_rx_disable

tests/bsim/bluetooth/mesh/tests_scripts/advertiser/proxy_mixin.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,3 @@ RunTest mesh_adv_proxy_mixin_workq adv_tx_proxy_mixin adv_rx_proxy_mixin
2929

3030
overlay="overlay_gatt_conf_overlay_multi_adv_sets_conf"
3131
RunTest mesh_adv_proxy_mixin_multi_adv_sets adv_tx_proxy_mixin adv_rx_proxy_mixin
32-
33-
overlay="overlay_gatt_conf_overlay_psa_conf"
34-
RunTest mesh_adv_proxy_mixin_psa adv_tx_proxy_mixin adv_rx_proxy_mixin

tests/bsim/bluetooth/mesh/tests_scripts/advertiser/random_order.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,3 @@ RunTest mesh_adv_random_order_workq adv_tx_random_order adv_rx_random_order
1212

1313
overlay="overlay_multi_adv_sets_conf"
1414
RunTest mesh_adv_random_order_multi_adv_sets adv_tx_random_order adv_rx_random_order
15-
16-
overlay=overlay_psa_conf
17-
RunTest mesh_adv_random_order_psa adv_tx_random_order adv_rx_random_order

tests/bsim/bluetooth/mesh/tests_scripts/advertiser/reverse_order.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,3 @@ RunTest mesh_adv_reverse_order_workq adv_tx_reverse_order adv_rx_receive_order
1212

1313
overlay="overlay_multi_adv_sets_conf"
1414
RunTest mesh_adv_reverse_order_multi_adv_sets adv_tx_reverse_order adv_rx_receive_order
15-
16-
overlay=overlay_psa_conf
17-
RunTest mesh_adv_reverse_order_psa adv_tx_reverse_order adv_rx_receive_order

tests/bsim/bluetooth/mesh/tests_scripts/advertiser/send_order.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,3 @@ RunTest mesh_adv_send_order_workq adv_tx_send_order adv_rx_receive_order
1212

1313
overlay="overlay_multi_adv_sets_conf"
1414
RunTest mesh_adv_send_order_multi_adv_sets adv_tx_send_order adv_rx_receive_order
15-
16-
overlay=overlay_psa_conf
17-
RunTest mesh_adv_send_order_psa adv_tx_send_order adv_rx_receive_order

tests/bsim/bluetooth/mesh/tests_scripts/advertiser/tx_cb_multi.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,3 @@ RunTest mesh_adv_tx_cb_multi_workq adv_tx_cb_multi
1212

1313
overlay="overlay_multi_adv_sets_conf"
1414
RunTest mesh_adv_tx_cb_multi_multi_adv_sets adv_tx_cb_multi
15-
16-
overlay=overlay_psa_conf
17-
RunTest mesh_adv_tx_cb_multi_psa adv_tx_cb_multi

tests/bsim/bluetooth/mesh/tests_scripts/advertiser/tx_cb_single.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,4 @@ overlay=overlay_workq_sys_conf
1111
RunTest mesh_adv_tx_cb_single_workq adv_tx_cb_single adv_rx_xmit
1212

1313
overlay="overlay_multi_adv_sets_conf"
14-
RunTest mesh_adv_tx_cb_single_psa_multi_adv_sets adv_tx_cb_single adv_rx_xmit
15-
16-
overlay=overlay_psa_conf
17-
RunTest mesh_adv_tx_cb_single_psa adv_tx_cb_single adv_rx_xmit
14+
RunTest mesh_adv_tx_cb_single_multi_adv_sets adv_tx_cb_single adv_rx_xmit

tests/bsim/bluetooth/mesh/tests_scripts/beacon/beacon_cache.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
1414
RunTest mesh_beacon_cache \
1515
beacon_tx_beacon_cache \
1616
beacon_rx_beacon_cache
17-
18-
overlay=overlay_psa_conf
19-
RunTest mesh_beacon_cache \
20-
beacon_tx_beacon_cache \
21-
beacon_rx_beacon_cache

tests/bsim/bluetooth/mesh/tests_scripts/beacon/beacon_interval.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
2121
RunTest mesh_beacon_interval \
2222
beacon_tx_secure_beacon_interval \
2323
beacon_rx_secure_beacon_interval
24-
25-
overlay=overlay_psa_conf
26-
RunTest mesh_beacon_interval_psa \
27-
beacon_tx_secure_beacon_interval \
28-
beacon_rx_secure_beacon_interval

tests/bsim/bluetooth/mesh/tests_scripts/beacon/invalid.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
77
RunTest mesh_beacon_invalid \
88
beacon_tx_invalid \
99
beacon_rx_invalid
10-
11-
overlay=overlay_psa_conf
12-
RunTest mesh_beacon_invalid_psa \
13-
beacon_tx_invalid \
14-
beacon_rx_invalid

tests/bsim/bluetooth/mesh/tests_scripts/beacon/iv_update.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
77
RunTest mesh_beacon_on_iv_update \
88
beacon_tx_on_iv_update \
99
beacon_rx_on_iv_update
10-
11-
overlay=overlay_psa_conf
12-
RunTest mesh_beacon_on_iv_update_psa \
13-
beacon_tx_on_iv_update \
14-
beacon_rx_on_iv_update

tests/bsim/bluetooth/mesh/tests_scripts/beacon/key_refresh.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
77
RunTest mesh_beacon_on_key_refresh \
88
beacon_tx_on_key_refresh \
99
beacon_rx_on_key_refresh
10-
11-
overlay=overlay_psa_conf
12-
RunTest mesh_beacon_on_key_refresh_psa \
13-
beacon_tx_on_key_refresh \
14-
beacon_rx_on_key_refresh

tests/bsim/bluetooth/mesh/tests_scripts/beacon/kr_old_key.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
77
RunTest mesh_beacon_kr_old_key \
88
beacon_tx_kr_old_key \
99
beacon_rx_kr_old_key
10-
11-
overlay=overlay_psa_conf
12-
RunTest mesh_beacon_kr_old_key_psa \
13-
beacon_tx_kr_old_key \
14-
beacon_rx_kr_old_key

tests/bsim/bluetooth/mesh/tests_scripts/beacon/multiple_netkeys.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
77
RunTest mesh_beacon_multiple_netkeys \
88
beacon_tx_multiple_netkeys \
99
beacon_rx_multiple_netkeys
10-
11-
overlay=overlay_psa_conf
12-
RunTest mesh_beacon_multiple_netkeys_psa \
13-
beacon_tx_multiple_netkeys \
14-
beacon_rx_multiple_netkeys

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_broadcast_basic.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,3 @@
55
source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest blob_broadcast_basic blob_cli_broadcast_basic
8-
9-
overlay=overlay_psa_conf
10-
RunTest blob_broadcast_basic_psa blob_cli_broadcast_basic

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_broadcast_trans.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,3 @@
55
source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest blob_broadcast_trans blob_cli_broadcast_trans
8-
9-
overlay=overlay_psa_conf
10-
RunTest blob_broadcast_trans_psa blob_cli_broadcast_trans

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_broadcast_unicast.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,3 @@
55
source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest blob_broadcast_unicast blob_cli_broadcast_unicast
8-
9-
overlay=overlay_psa_conf
10-
RunTest blob_broadcast_unicast_psa blob_cli_broadcast_unicast

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_broadcast_unicast_seq.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,3 @@
55
source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
66

77
RunTest blob_broadcast_unicast_seq blob_cli_broadcast_unicast_seq
8-
9-
overlay=overlay_psa_conf
10-
RunTest blob_broadcast_unicast_seq_psa blob_cli_broadcast_unicast_seq

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_caps_all_rsp.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
77
# The test instance sequence must stay as it is due to addressing scheme
88
RunTest blob_caps_all_rsp \
99
blob_cli_caps_all_rsp blob_srv_caps_standard blob_srv_caps_standard
10-
11-
overlay=overlay_psa_conf
12-
RunTest blob_caps_all_rsp_psa \
13-
blob_cli_caps_all_rsp blob_srv_caps_standard blob_srv_caps_standard

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_caps_cancelled.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
77
# The test instance seqence must stay as it is due to addressing scheme
88
RunTest blob_caps_cancelled \
99
blob_cli_caps_cancelled blob_srv_caps_standard
10-
11-
overlay=overlay_psa_conf
12-
RunTest blob_caps_cancelled_psa \
13-
blob_cli_caps_cancelled blob_srv_caps_standard

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_caps_no_rsp.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
77
# The test instance sequence must stay as it is due to addressing scheme
88
RunTest blob_caps_no_rsp \
99
blob_cli_caps_no_rsp blob_srv_caps_no_rsp blob_srv_caps_no_rsp
10-
11-
overlay=overlay_psa_conf
12-
RunTest blob_caps_no_rsp_psa \
13-
blob_cli_caps_no_rsp blob_srv_caps_no_rsp blob_srv_caps_no_rsp

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_caps_partial_rsp.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,3 @@ source $(dirname "${BASH_SOURCE[0]}")/../../_mesh_test.sh
77
# The test instance sequence must stay as it is due to addressing scheme
88
RunTest blob_caps_partial_rsp \
99
blob_cli_caps_partial_rsp blob_srv_caps_standard blob_srv_caps_no_rsp
10-
11-
overlay=overlay_psa_conf
12-
RunTest blob_caps_partial_rsp_psa \
13-
blob_cli_caps_partial_rsp blob_srv_caps_standard blob_srv_caps_no_rsp

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_friend.sh

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,3 @@ RunTest blob_transfer_lpn \
1414
blob_srv_lpn_pull \
1515
blob_srv_lpn_pull \
1616
blob_srv_lpn_pull
17-
18-
overlay=overlay_psa_conf
19-
RunTest blob_transfer_lpn_psa \
20-
blob_cli_friend_pull \
21-
blob_srv_lpn_pull \
22-
blob_srv_lpn_pull \
23-
blob_srv_lpn_pull \
24-
blob_srv_lpn_pull \
25-
blob_srv_lpn_pull

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_no_rsp_block.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,3 @@ RunTest blob_no_rsp_block_get \
88
blob_cli_fail_on_no_rsp \
99
blob_srv_fail_on_block_get \
1010
blob_srv_fail_on_block_get -- -argstest msg-fail-type=0
11-
12-
overlay=overlay_psa_conf
13-
RunTest blob_no_rsp_block_get_psa \
14-
blob_cli_fail_on_no_rsp \
15-
blob_srv_fail_on_block_get \
16-
blob_srv_fail_on_block_get -- -argstest msg-fail-type=0

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_no_rsp_xfer.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,3 @@ RunTest blob_no_rsp_xfer_get \
88
blob_cli_fail_on_no_rsp \
99
blob_srv_fail_on_xfer_get \
1010
blob_srv_fail_on_xfer_get -- -argstest msg-fail-type=1
11-
12-
overlay=overlay_psa_conf
13-
RunTest blob_no_rsp_xfer_get_psa \
14-
blob_cli_fail_on_no_rsp \
15-
blob_srv_fail_on_xfer_get \
16-
blob_srv_fail_on_xfer_get -- -argstest msg-fail-type=1

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_persistent_transfer.sh

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,3 @@ RunTest blob_fail \
1111
blob_srv_fail_on_block_get \
1212
blob_srv_fail_on_xfer_get \
1313
blob_srv_fail_on_nothing
14-
15-
overlay=overlay_psa_conf
16-
RunTest blob_fail_psa \
17-
blob_cli_fail_on_persistency \
18-
blob_srv_fail_on_block_start\
19-
blob_srv_fail_on_block_get \
20-
blob_srv_fail_on_xfer_get \
21-
blob_srv_fail_on_nothing

tests/bsim/bluetooth/mesh/tests_scripts/blob_mdls/blob_cli_persistent_transfer_pull.sh

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,3 @@ RunTest blob_pst_pull \
99
blob_cli_trans_persistency_pull \
1010
blob_srv_trans_persistency_pull \
1111
blob_srv_trans_persistency_pull
12-
13-
overlay=overlay_psa_conf
14-
RunTest blob_pst_pull_psa \
15-
blob_cli_trans_persistency_pull \
16-
blob_srv_trans_persistency_pull \
17-
blob_srv_trans_persistency_pull

0 commit comments

Comments
 (0)