diff --git a/unit/test-avrcp.c b/unit/test-avrcp.c
index eddce41..e8cf34a 100644
--- a/unit/test-avrcp.c
+++ b/unit/test-avrcp.c
DBG("");
- if (g_str_equal(context->data->test_name, "/TP/RCR/BV-02-C")) {
+ if (g_str_has_prefix(context->data->test_name, "/TP/RCR")) {
uint8_t params[1024];
memset(params, 0x00, sizeof(params) / 2);
0x00, 0x19, 0x58, AVRCP_GET_ELEMENT_ATTRIBUTES,
0x03, 0x00, 0x0e));
+ /* Abort continuing response - TG */
+ define_test("/TP/RCR/BV-04-C", test_server,
+ 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),
+ cont_pdu(0x02, 0x11, 0x0e, 0x0c, 0x48, 0x00,
+ 0x00, 0x19, 0x58, AVRCP_GET_ELEMENT_ATTRIBUTES,
+ 0x01, 0x01, 0xf9),
+ raw_pdu(0x00, 0x11, 0x0e, 0x00, 0x48, 0x00,
+ 0x00, 0x19, 0x58, AVRCP_ABORT_CONTINUING,
+ 0x00, 0x00, 0x01, AVRCP_GET_ELEMENT_ATTRIBUTES),
+ raw_pdu(0x02, 0x11, 0x0e, 0x09, 0x48, 0x00,
+ 0x00, 0x19, 0x58, AVRCP_ABORT_CONTINUING,
+ 0x00, 0x00, 0x00));
+
return g_test_run();
}