Description
Your Environment
Ubuntu 18.04
- Version:
master branch - Affected Component:
TestCntlrStub - Affected Subcomponent:
- Deployment Environment:
Describe the Issue
While running TestCntlrStub with my EPC, it observed failure at the following function
testErrIndWithIvalidUeS1apIds (defined in file ts_atchDtchProcs.c ).
Sequence is
-
Attach with IMSI is triggered
-
Authentication Request MME initiated towards TestCntlrStub
-
TestCntrlStub initiated "ErrInd" with the following set of configuration.
**msgptr = malloc(sizeof(fwNbErrIndMsg_t));
memset(msgptr, 0, sizeof(fwNbErrIndMsg_t));((fwNbErrIndMsg_t*)msgptr)->isUeAssoc = TRUE;
((fwNbErrIndMsg_t*)msgptr)->ue_Id = ueId;((fwNbErrIndMsg_t*)msgptr)->cause.pres = TRUE;
((fwNbErrIndMsg_t*)msgptr)->cause.causeType = 0;
((fwNbErrIndMsg_t*)msgptr)->cause.causeVal = 15;
((fwNbErrIndMsg_t*)msgptr)->criticalityDiag.pres = FALSE;printf("\n[STUB]: Sending Err Indication Message.\n");
tsSendErrIndMsg(msgptr);**In wireshark there is no ErrInd message.
To Reproduce
Do the following:
Expected behavior
If the configuration is correct present in the master branch then ErrInd message should go out.
Screenshots
If applicable, add screenshots to help explain your problem.
Additional context
Can someone please share the configuration by using that ErrInd can be simulated ?
Activity