From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> To verify that the IUT (TG) formats correctly the following fields of the AVCTP response message: “transaction label”, "message type(R)", PID, “packet type”, IPID and “message information”. Check that AVCTP send response packet along with other information. Payload is out of scope of this test (AVC_CTYPE_REJECTED is OK). --- unit/test-avctp.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/unit/test-avctp.c b/unit/test-avctp.c index 49bd640..8c97a82 100644 --- a/unit/test-avctp.c +++ b/unit/test-avctp.c @@ -244,6 +244,15 @@ static void test_client(gconstpointer data) execute_context(context); } +static void test_server(gconstpointer data) +{ + struct context *context = create_context(0x0100, data); + + g_idle_add(send_pdu, context); + + execute_context(context); +} + int main(int argc, char *argv[]) { g_test_init(&argc, &argv, NULL); @@ -254,5 +263,9 @@ int main(int argc, char *argv[]) define_test("/TP/NFR/BV-01-C", test_client, raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x00, 0x00)); + define_test("/TP/NFR/BV-02-C", test_server, + raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x00, 0x00), + raw_pdu(0x02, 0x11, 0x0e, 0x0a, 0x00, 0x00)); + return g_test_run(); } -- 1.8.3.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html