Diff between d0d8877393f94c2b5790199e4a6ac12ced311215 and ed6ebbb0482bf2397a36492fd1376dc68d7b7307

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 e09b055..cd6a616 100644
--- a/unit/test-gatt.c
+++ b/unit/test-gatt.c
@@ -2115,5 +2115,17 @@ int main(int argc, char *argv[])
 			raw_pdu(0x0C, 0xCE, 0x00, 0xF0, 0x00),
 			raw_pdu(0x01, 0x0C, 0xCE, 0x00, 0x07));
 
+	define_test_server("/TP/GAR/SR/BI-30-C/small", test_server,
+			ts_small_db, NULL,
+			raw_pdu(0x03, 0x00, 0x02),
+			raw_pdu(0x0C, 0xF0, 0x0F, 0x00, 0x00),
+			raw_pdu(0x01, 0x0C, 0xF0, 0x0F, 0x01));
+
+	define_test_server("/TP/GAR/SR/BI-30-C/large-1", test_server,
+			ts_large_db_1, NULL,
+			raw_pdu(0x03, 0x00, 0x02),
+			raw_pdu(0x0C, 0xF0, 0x0F, 0x00, 0x00),
+			raw_pdu(0x01, 0x0C, 0xF0, 0x0F, 0x01));
+
 	return g_test_run();
 }