aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-10-01 22:13:29 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-10-03 03:36:15 +0700
commit74ae5eb448854d6739a664884393b06e391e3926 (patch)
tree172d4130a1f3854d716ee09ce1e11e22c6082cf7
parent67de93784e416077e14195accc05e79571babbfe (diff)
BSC_Tests: s/f_verify_active_layer3/f_mo_l3_transceive/g
The new name is more concrete and better reflects what the function does: transmit a MO L3 payload to the IUT over the A-bis/RSL and receive it back on the A/BSSAP. Change-Id: Ic2b60b60c49ae7788ce03503b8b867bb9e55244b Related: OS#3716
-rw-r--r--bsc/BSC_Tests.ttcn6
1 files changed, 3 insertions, 3 deletions
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn
index 96723575..2efe2fdb 100644
--- a/bsc/BSC_Tests.ttcn
+++ b/bsc/BSC_Tests.ttcn
@@ -4464,7 +4464,7 @@ testcase TC_ho_out_of_this_bsc() runs on test_CT {
f_shutdown_helper();
}
-private function f_verify_active_layer3() runs on MSC_ConnHdlr
+private function f_mo_l3_transceive() runs on MSC_ConnHdlr
{
/* The old lchan and conn should still be active. See that arbitrary L3
* is still going through. */
@@ -4503,7 +4503,7 @@ private function f_tc_ho_out_fail_no_msc_response(charstring id) runs on MSC_Con
* Let's give it a bit extra. */
f_sleep(15.0);
- f_verify_active_layer3();
+ f_mo_l3_transceive();
f_sleep(1.0);
}
testcase TC_ho_out_fail_no_msc_response() runs on test_CT {
@@ -4581,7 +4581,7 @@ private function f_tc_ho_out_fail_rr_ho_failure(charstring id) runs on MSC_ConnH
f_sleep(1.0);
- f_verify_active_layer3();
+ f_mo_l3_transceive();
f_sleep(1.0);
setverdict(pass);