Diff between c33e6347ea7db3be3df49a001073820b03d790d0 and c0b253a20d555f1d15248a93f524a41f87440114

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 29387f0..8f5b076 100644
--- a/unit/test-gatt.c
+++ b/unit/test-gatt.c
@@ -2024,5 +2024,17 @@ int main(int argc, char *argv[])
 			raw_pdu(0x0e, 0x44, 0x00, 0x06, 0x00, 0x27, 0x00),
 			raw_pdu(0x01, 0x0e, 0x27, 0x00, 0x02));
 
+	define_test_server("/TP/GAR/SR/BI-19-C/small", test_server,
+			ts_small_db, NULL,
+			raw_pdu(0x03, 0x00, 0x02),
+			raw_pdu(0x0e, 0x15, 0xF0, 0xF0, 0x0F),
+			raw_pdu(0x01, 0x0e, 0xF0, 0x0F, 0x01));
+
+	define_test_server("/TP/GAR/SR/BI-19-C/large-1", test_server,
+			ts_large_db_1, NULL,
+			raw_pdu(0x03, 0x00, 0x02),
+			raw_pdu(0x0e, 0x44, 0x00, 0xF0, 0x0F),
+			raw_pdu(0x01, 0x0e, 0xF0, 0x0F, 0x01));
+
 	return g_test_run();
 }