Diff between 6d487981b20e235619280d4aba3d939c45ac0094 and d0d8877393f94c2b5790199e4a6ac12ced311215

Changed Files

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

Full Patch

diff --git a/unit/test-gatt.c b/unit/test-gatt.c
index d31a157..e09b055 100644
--- a/unit/test-gatt.c
+++ b/unit/test-gatt.c
@@ -2103,5 +2103,17 @@ int main(int argc, char *argv[])
 			raw_pdu(0x0C, 0x96, 0x00, 0x00, 0x00),
 			raw_pdu(0x01, 0x0C, 0x96, 0x00, 0x02));
 
+	define_test_server("/TP/GAR/SR/BI-29-C/small", test_server,
+			ts_small_db, NULL,
+			raw_pdu(0x03, 0x00, 0x02),
+			raw_pdu(0x0C, 0x05, 0x00, 0xF0, 0x00),
+			raw_pdu(0x01, 0x0C, 0x05, 0x00, 0x07));
+
+	define_test_server("/TP/GAR/SR/BI-29-C/large-1", test_server,
+			ts_large_db_1, NULL,
+			raw_pdu(0x03, 0x00, 0x02),
+			raw_pdu(0x0C, 0xCE, 0x00, 0xF0, 0x00),
+			raw_pdu(0x01, 0x0C, 0xCE, 0x00, 0x07));
+
 	return g_test_run();
 }