Diff between 752ee58316dad9edb29f0ffda8f87e8f4dcf4e3c and e6b41f01929e2315a26bd7dca1b05cec8e022794

Changed Files

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

Full Patch

diff --git a/unit/test-avrcp.c b/unit/test-avrcp.c
index d4d26be..a37126e 100644
--- a/unit/test-avrcp.c
+++ b/unit/test-avrcp.c
@@ -605,6 +605,10 @@ static void test_client(gconstpointer data)
 	if (g_str_equal(context->data->test_name, "/TP/MCN/SRC/BV-01-C"))
 		avrcp_search(context->session, "Country");
 
+	if (g_str_equal(context->data->test_name, "/TP/MCN/SRC/BV-03-C"))
+		avrcp_get_folder_items(context->session, AVRCP_MEDIA_SEARCH,
+						0, 2, 0, NULL);
+
 	if (g_str_equal(context->data->test_name, "/TP/CFG/BV-01-C"))
 		avrcp_get_capabilities(context->session, CAP_EVENTS_SUPPORTED);
 
@@ -730,6 +734,13 @@ int main(int argc, char *argv[])
 				0x00, 0x07,
 				0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79));
 
+	/* GetFolderItems - CT */
+	define_test("/TP/MCN/SRC/BV-03-C", test_client,
+			raw_pdu(0x00, 0x11, 0x0e, AVRCP_GET_FOLDER_ITEMS,
+				0x00, 0x0a, AVRCP_MEDIA_SEARCH,
+				0x00, 0x00, 0x00, 0x00, /* start */
+				0x00, 0x00, 0x00, 0x02, /* end */
+				0x00));
 
 	/* Media Player Selection IOP tests */