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
This commit is contained in:
Philipp Maier 2021-05-17 18:41:19 +02:00 committed by laforge
parent eba70db649
commit c0ca42d119
1 changed files with 4 additions and 0 deletions

View File

@ -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());