Diff between 55899e97d4b607c583d60c1c3ec585f8885fbee2 and b9128441c0a1b23e93a3730195b3357d33dd37d2

Changed Files

File Additions Deletions Status
unit/test-avrcp.c +9 -0 modified

Full Patch

diff --git a/unit/test-avrcp.c b/unit/test-avrcp.c
index 4f81954..9b334e6 100644
--- a/unit/test-avrcp.c
+++ b/unit/test-avrcp.c
@@ -553,6 +553,9 @@ static void test_client(gconstpointer data)
 	if (g_str_equal(context->data->test_name, "/TP/MDI/BV-01-C"))
 		avrcp_get_play_status(context->session, NULL, NULL);
 
+	if (g_str_equal(context->data->test_name, "/TP/MDI/BV-03-C"))
+		avrcp_get_element_attributes(context->session, NULL, NULL);
+
 	execute_context(context);
 }
 
@@ -812,6 +815,12 @@ int main(int argc, char *argv[])
 				0x00, 0x00, 0x09, 0xaa, 0xaa, 0xaa,
 				0xaa, 0xbb, 0xbb, 0xbb, 0xbb, 0x00));
 
+	/* Get element attributes - CT */
+	define_test("/TP/MDI/BV-03-C", test_client,
+			raw_pdu(0x00, 0x11, 0x0e, 0x01, 0x48, 0x00,
+				0x00, 0x19, 0x58, AVRCP_GET_ELEMENT_ATTRIBUTES,
+				0x00, 0x00, 0x09, 0x00, 0x00, 0x00,
+				0x00, 0x00, 0x00, 0x00, 0x00, 0x00));
 
 	return g_test_run();
 }