Diff between 2c782569ccb0e83f56ce836607324ce880de0acd and b303edec36dd9fbcc9a1fc425ba4b33177fff67c

Changed Files

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

Full Patch

diff --git a/unit/test-gatt.c b/unit/test-gatt.c
index 7d0c29e..0869a14 100644
--- a/unit/test-gatt.c
+++ b/unit/test-gatt.c
@@ -804,6 +804,14 @@ static const struct test_step test_write_3 = {
 	.length = 0x03
 };
 
+static const struct test_step test_write_4 = {
+	.handle = 0x0007,
+	.func = test_write,
+	.expected_att_ecode = 0x08,
+	.value = write_data_1,
+	.length = 0x03
+};
+
 static void att_write_cb(struct gatt_db_attribute *att, int err,
 								void *user_data)
 {
@@ -2909,5 +2917,11 @@ int main(int argc, char *argv[])
 			raw_pdu(0x12, 0x07, 0x00, 0x01, 0x02, 0x03),
 			raw_pdu(0x01, 0x12, 0x07, 0x00, 0x03));
 
+	define_test_client("/TP/GAW/CL/BI-04-C", test_client, service_db_1,
+			&test_write_4,
+			SERVICE_DATA_1_PDUS,
+			raw_pdu(0x12, 0x07, 0x00, 0x01, 0x02, 0x03),
+			raw_pdu(0x01, 0x12, 0x07, 0x00, 0x08));
+
 	return tester_run();
 }