diff --git a/library/L1CTL_PortType.ttcn b/library/L1CTL_PortType.ttcn index 7af680c93..2423715a3 100644 --- a/library/L1CTL_PortType.ttcn +++ b/library/L1CTL_PortType.ttcn @@ -59,7 +59,7 @@ module L1CTL_PortType { } [] pt.receive { repeat; }; [] T.timeout { - setverdict(fail, "Timeout in FBSB") + setverdict(fail, "Timeout waiting for L1CTL_FBSB_CONF"); mtc.stop; }; } @@ -74,7 +74,7 @@ module L1CTL_PortType { [] pt.receive(tr_L1CTL_CCCH_MODE_CONF) { } [] pt.receive { repeat; } [] T.timeout { - setverdict(fail, "Timeout in CCH_MODE"); + setverdict(fail, "Timeout waiting for L1CTL_CCCH_MODE_CONF"); mtc.stop; } } @@ -93,7 +93,7 @@ module L1CTL_PortType { [] pt.receive(tr_L1CTL_RACH_CONF) -> value rc { fn := rc.dl_info.frame_nr }; [] pt.receive { repeat; }; [] T.timeout { - setverdict(fail, "Timeout in RACH"); + setverdict(fail, "Timeout waiting for L1CTL_RACH_CONF"); mtc.stop; } } @@ -114,7 +114,7 @@ module L1CTL_PortType { [] pt.receive(tr_L1CTL_RACH_CONF) -> value rc { fn := rc.dl_info.frame_nr }; [] pt.receive { repeat; }; [] T.timeout { - setverdict(fail, "Timeout in extended RACH"); + setverdict(fail, "Timeout waiting for (extended) L1CTL_RACH_CONF"); mtc.stop; } } @@ -168,7 +168,7 @@ module L1CTL_PortType { }; [] pt.receive { repeat }; [] T.timeout { - setverdict(fail, "Timeout waiting for IMM ASS"); + setverdict(fail, "Timeout waiting for TBF IMM ASS"); mtc.stop; } } @@ -184,7 +184,7 @@ module L1CTL_PortType { [] pt.receive(tr_L1CTL_TBF_CFG_CONF(is_uplink)) {} [] pt.receive { repeat }; [] T.timeout { - setverdict(fail, "Timeout waiting for TBF-CFG.conf"); + setverdict(fail, "Timeout waiting for L1CTL_TBF_CFG_CONF"); mtc.stop; }; } @@ -213,7 +213,7 @@ module L1CTL_PortType { [] pt.receive(tr_L1CTL_MsgType(L1CTL_RESET_CONF)) { } [] pt.receive { repeat; } [] T.timeout { - setverdict(fail, "Timeout waiting for RESET.conf"); + setverdict(fail, "Timeout waiting for L1CTL_RESET_CONF"); mtc.stop; } }