library/L1CTL_PortType.ttcn: clarify and unify timeout messages

It's way more cleaner when you see:

  Timeout waiting for L1CTL_RACH_CONF

instead of:

  Timeout in RACH.

Change-Id: I25e8230c2e4b29b2583bf8954d0dedaa18e5d6ae
This commit is contained in:
Vadim Yanitskiy 2019-06-12 01:34:05 +07:00 committed by laforge
parent f2b477bffa
commit de8af3d2ac
1 changed files with 7 additions and 7 deletions

View File

@ -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;
}
}