Diff between 550dd160f84056b5d72ccd30f55c9074a6f306f1 and c0041c33db5c9ae5e75f4521f2a0cfdd212d1063

Changed Files

File Additions Deletions Status
unit/test-gatt.c +13 -0 modified

Full Patch

diff --git a/unit/test-gatt.c b/unit/test-gatt.c
index 1982629..dc4d0b1 100644
--- a/unit/test-gatt.c
+++ b/unit/test-gatt.c
@@ -719,6 +719,13 @@ const struct test_step test_multiple_read_4 = {
 	.expected_att_ecode = 0x08
 };
 
+const struct test_step test_multiple_read_5 = {
+	.handle = 0x0003,
+	.end_handle = 0x0007,
+	.func = test_multiple_read,
+	.expected_att_ecode = 0x05
+};
+
 static void read_by_type_cb(bool success, uint8_t att_ecode,
 						struct bt_gatt_result *result,
 						void *user_data)
@@ -976,5 +983,11 @@ int main(int argc, char *argv[])
 			raw_pdu(0x0e, 0x03, 0x00, 0x07, 0x00),
 			raw_pdu(0x01, 0x0e, 0x03, 0x00, 0x08));
 
+	define_test_client("/TP/GAR/CL/BI-21-C", test_client, service_data_1,
+			&test_multiple_read_5,
+			SERVICE_DATA_1_PDU,
+			raw_pdu(0x0e, 0x03, 0x00, 0x07, 0x00),
+			raw_pdu(0x01, 0x0e, 0x03, 0x00, 0x05));
+
 	return g_test_run();
 }