From ec0e3b1784e039ecb5b81638569c17cdb8e92501 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 22 Jun 2015 11:29:44 +0300 Subject: [PATCH] unit/test-gatt: Use auto security 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 bb6a2703f..9a9fa6092 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.47.3