aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-10-02 00:04:51 +0700
committerlaforge <laforge@osmocom.org>2019-10-04 16:20:13 +0000
commitd24b5252b44d42230449ce8218b58b5a8f2d1aa9 (patch)
tree0158ef5c775dcf5fb2afb0cbc1ef13cf128faec5
parentad931f236b73eec04a4a54a5a9e08b7c2c83a9e9 (diff)
MSC_Tests.ttcn: fix race condition in f_tc_proc_ss_paging_fail()
Sometimes in TC_proc_ss_paging_fail we hit a race condition. The problem is that the paging expiration timer in OsmoMSC is set to 10 seconds by default (see MSC_PAGING_RESPONSE_TIMER_DEFAULT), and in f_tc_proc_ss_paging_fail() we also wait 10.0 seconds. Let's increase our timer value to 20.0 seconds, so there will be more 10 seconds of leeway. Change-Id: I6983e8c0cc8e1d7d1619f127e80063d71a4759d2 Related: Jenkins ttcn3-msc-test build #677
-rw-r--r--msc/MSC_Tests.ttcn5
1 files changed, 3 insertions, 2 deletions
diff --git a/msc/MSC_Tests.ttcn b/msc/MSC_Tests.ttcn
index 0d544055..fbb471e7 100644
--- a/msc/MSC_Tests.ttcn
+++ b/msc/MSC_Tests.ttcn
@@ -3705,8 +3705,9 @@ runs on BSC_ConnHdlr {
}
}
- /* Expect GSUP PROC_SS_ERROR message */
- f_expect_gsup_msg(gsup_rsp, T_val := 10.0);
+ /* Wait up to 20 seconds for GSUP PROC_SS_ERROR message.
+ * OsmoMSC waits for Paging Response 10 seconds by default. */
+ f_expect_gsup_msg(gsup_rsp, T_val := 20.0);
}
testcase TC_proc_ss_paging_fail() runs on MTC_CT {
var BSC_ConnHdlr vc_conn;