From: Luiz Augusto von Dentz <luiz.von.dentz@xxxxxxxxx> If the test don't expect any errors to happen use set security to auto so bt_att will take care of elevating the security whenever needed. --- unit/test-gatt.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/unit/test-gatt.c b/unit/test-gatt.c index bb6a270..9a9fa60 100644 --- a/unit/test-gatt.c +++ b/unit/test-gatt.c @@ -630,6 +630,10 @@ static void client_ready_cb(bool success, uint8_t att_ecode, void *user_data) if (context->data->step) { const struct test_step *step = context->data->step; + /* Auto elevate security for test that don't expect error */ + if (!step->expected_att_ecode) + bt_att_set_security(context->att, BT_ATT_SECURITY_AUTO); + step->func(context); return; } -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html