pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42195?usp=email )
Change subject: mgw: Improve failure message in f_TC_one_crcx_loopback_rtp() ......................................................................
mgw: Improve failure message in f_TC_one_crcx_loopback_rtp()
Change-Id: I51c656371c330e4689738321d0739e280cab530d --- M mgw/MGCP_Test.ttcn 1 file changed, 2 insertions(+), 2 deletions(-)
Approvals: osmith: Looks good to me, approved Jenkins Builder: Verified
diff --git a/mgw/MGCP_Test.ttcn b/mgw/MGCP_Test.ttcn index 934179c..36cd94c 100644 --- a/mgw/MGCP_Test.ttcn +++ b/mgw/MGCP_Test.ttcn @@ -1935,10 +1935,10 @@ if (one_phase) { /* osmo-mgw knows both local and remote RTP address. Expect all packets to be reflected. */ if (stats.num_pkts_tx != stats.num_pkts_rx) { - setverdict(fail); + setverdict(fail, "stats.num_pkts_tx=", stats.num_pkts_tx, " != stats.num_pkts_rx=", stats.num_pkts_rx); } if (stats.bytes_payload_tx != stats.bytes_payload_rx) { - setverdict(fail); + setverdict(fail, "stats.bytes_payload_tx=", stats.bytes_payload_tx, " != stats.bytes_payload_rx=", stats.bytes_payload_rx); } } else { /* osmo-mgw knows only the local RTP address. Expect no packets to be reflected. */