Diff between c0b253a20d555f1d15248a93f524a41f87440114 and 31ea4a9684d8ffc6ba82c61c896410955bcb0974

Changed Files

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

Full Patch

diff --git a/unit/test-gatt.c b/unit/test-gatt.c
index 8f5b076..dbbd504 100644
--- a/unit/test-gatt.c
+++ b/unit/test-gatt.c
@@ -2036,5 +2036,20 @@ int main(int argc, char *argv[])
 			raw_pdu(0x0e, 0x44, 0x00, 0xF0, 0x0F),
 			raw_pdu(0x01, 0x0e, 0xF0, 0x0F, 0x01));
 
+	define_test_server("/TP/GAR/SR/BV-06-C/small", test_server,
+			ts_small_db, NULL,
+			raw_pdu(0x03, 0x00, 0x02),
+			raw_pdu(0x0A, 0x05, 0x00),
+			raw_pdu(0x0B, 'M', 'a', 'n', 'u', 'f', 'a', 'c', 't',
+				'u', 'r', 'e', 'r', ' ', 'N', 'a', 'm', 'e'));
+
+	define_test_server("/TP/GAR/SR/BV-06-C/large-1", test_server,
+			ts_large_db_1, NULL,
+			raw_pdu(0x03, 0x00, 0x02),
+			raw_pdu(0x0A, 0xD4, 0x00),
+			raw_pdu(0x0B, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
+				0x88, 0x99, 0x00, 0x12, 0x34, 0x56, 0x78, 0x90,
+				0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34));
+
 	return g_test_run();
 }