diff --git a/bsc/MSC_ConnectionHandler.ttcn b/bsc/MSC_ConnectionHandler.ttcn index a7f4d7104..5a645bdcd 100644 --- a/bsc/MSC_ConnectionHandler.ttcn +++ b/bsc/MSC_ConnectionHandler.ttcn @@ -517,6 +517,7 @@ runs on MSC_ConnHdlr return PDU_BSSAP { var PDU_BSSAP bssap; timer T := 10.0; var boolean exp_compl := ischosen(exp_ass_cpl.pdu.bssmap.assignmentComplete); + var boolean exp_fail := ischosen(exp_ass_cpl.pdu.bssmap.assignmentFailure); var ExpectCriteria mgcpcrit := { connid := omit, endpoint := omit, @@ -556,6 +557,9 @@ runs on MSC_ConnHdlr return PDU_BSSAP { (not st.is_assignment and st.modify_done)] BSSAP.receive(exp_ass_cpl) -> value bssap { setverdict(pass); } + [exp_fail] BSSAP.receive(exp_ass_cpl) -> value bssap { + setverdict(pass); + } [(st.is_assignment and st.assignment_done or (not st.is_assignment and st.modify_done)) and exp_compl] BSSAP.receive(tr_BSSMAP_AssignmentComplete) {