Commit 2f9b634e authored by Vijay Chadachan's avatar Vijay Chadachan Committed by Vijay C

Fix for DRB in handover test cases

parent 757b5eb1
...@@ -1187,9 +1187,14 @@ pdcp_data_ind( ...@@ -1187,9 +1187,14 @@ pdcp_data_ind(
SS_DRB_PDU_IND (message_p).frame = ctxt_pP->frame; SS_DRB_PDU_IND (message_p).frame = ctxt_pP->frame;
SS_DRB_PDU_IND (message_p).subframe = ctxt_pP->subframe; SS_DRB_PDU_IND (message_p).subframe = ctxt_pP->subframe;
int send_res = itti_send_msg_to_task (TASK_SS_DRB, INSTANCE_DEFAULT, message_p); /* Workaround fix for not getting SS_DRB_PDU_IND in other test cases */
if(send_res < 0) { if(SS_DRB_PDU_IND (message_p).sdu_size > 0) {
LOG_E(RRC,"Error in itti_send_msg_to_task"); int send_res = itti_send_msg_to_task (TASK_SS_DRB, INSTANCE_DEFAULT, message_p);
if(send_res < 0) {
LOG_E(RRC,"Error in itti_send_msg_to_task");
}
} else {
LOG_A(RRC,"sdu size:%d in SS_DRB_PDU_IND is not greater then zero \n",SS_DRB_PDU_IND (message_p).sdu_size);
} }
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment