pespin has uploaded this change for review. (
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks
refs/changes/95/42195/1
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. */
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42195?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I51c656371c330e4689738321d0739e280cab530d
Gerrit-Change-Number: 42195
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <[email protected]>