Return-Path: From: Michael Janssen To: linux-bluetooth@vger.kernel.org Cc: Michael Janssen Subject: [PATCH BlueZ v2 10/12] unit/gatt: Add /TP/GAD/SR/BV-06-C test Date: Mon, 5 Jan 2015 13:32:52 -0800 Message-Id: <1420493574-37305-11-git-send-email-jamuraa@chromium.org> In-Reply-To: <1420493574-37305-1-git-send-email-jamuraa@chromium.org> References: <1420493574-37305-1-git-send-email-jamuraa@chromium.org> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: Verify that a Generic Attribute Profile server can support a search for all descriptors of a specified characteristic. --- unit/test-gatt.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/unit/test-gatt.c b/unit/test-gatt.c index de3fe8b..44a10e8 100644 --- a/unit/test-gatt.c +++ b/unit/test-gatt.c @@ -1694,6 +1694,24 @@ int main(int argc, char *argv[]) raw_pdu(0x05, 0x01, 0x15, 0x00, 0x04, 0x29, 0x16, 0x00, 0x05, 0x29)); + define_test_server("/TP/GAD/SR/BV-06-C/small", test_server, + ts_small_db, NULL, + raw_pdu(0x03, 0x00, 0x02), + raw_pdu(0x04, 0x04, 0x00, 0x05, 0x00), + raw_pdu(0x05, 0x01, 0x04, 0x00, 0x02, 0x29, 0x05, 0x00, + 0x01, 0x29)); + + define_test_server("/TP/GAD/SR/BV-06-C/large-1", test_server, + ts_large_db_1, NULL, + raw_pdu(0x03, 0x00, 0x02), + raw_pdu(0x04, 0x73, 0x00, 0x76, 0x00), + raw_pdu(0x05, 0x01, 0x73, 0x00, 0x00, 0x29, 0x74, 0x00, + 0x01, 0x29, 0x75, 0x00, 0x04, 0x29), + raw_pdu(0x04, 0x76, 0x00, 0x76, 0x00), + raw_pdu(0x05, 0x02, 0x76, 0x00, 0xef, 0xcd, 0xab, 0x89, + 0x67, 0x45, 0x23, 0x01, 0x00, 0x00, 0x00, 0x00, + 0xd4, 0xd5, 0x00, 0x00)); + define_test_client("/TP/GAR/CL/BV-01-C", test_client, service_db_1, &test_read_1, SERVICE_DATA_1_PDUS, -- 2.2.0.rc0.207.ga3a616c