aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2021-05-17 18:41:19 +0200
committerlaforge <laforge@osmocom.org>2021-05-17 20:32:09 +0000
commitc0ca42d1193e63f1ff3138c0632175af3d732b02 (patch)
treee40dafff0e236ac55950967dd0675cee93ff66bf
parenteba70db649817c09399e316e1f717a31fc47b61a (diff)
MGCP_Test: add testcase TC_one_crcx_loopback_rtp_ipv6
There is an TC_one_crcx_loopback_rtp, an ipv6 variant can be added with minimal effort. Change-Id: If16ee5186fa697caa9cc404b7159be054cac5196
-rw-r--r--mgw/MGCP_Test.ttcn4
1 files changed, 4 insertions, 0 deletions
diff --git a/mgw/MGCP_Test.ttcn b/mgw/MGCP_Test.ttcn
index 5575f7ad..c1e263a3 100644
--- a/mgw/MGCP_Test.ttcn
+++ b/mgw/MGCP_Test.ttcn
@@ -1727,6 +1727,9 @@ module MGCP_Test {
testcase TC_one_crcx_loopback_rtp() runs on dummy_CT {
f_TC_one_crcx_loopback_rtp(mp_local_ipv4, mp_remote_ipv4, one_phase := true)
}
+ testcase TC_one_crcx_loopback_rtp_ipv6() runs on dummy_CT {
+ f_TC_one_crcx_loopback_rtp(mp_local_ipv6, mp_remote_ipv6, one_phase := true)
+ }
/* Same as above, but we will intenionally not tell the MGW where to
* send the outgoing traffic. The connection is still created in
@@ -2441,6 +2444,7 @@ module MGCP_Test {
execute(TC_one_crcx_receive_only_rtp());
execute(TC_one_crcx_loopback_rtp());
+ execute(TC_one_crcx_loopback_rtp_ipv6());
execute(TC_one_crcx_loopback_rtp_implicit());
execute(TC_two_crcx_and_rtp());
execute(TC_two_crcx_and_rtp_bidir());