aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2021-02-11 14:28:01 +0100
committerDaniel Willmann <dwillmann@sysmocom.de>2021-02-11 15:17:14 +0100
commitc879f3416f4afb28444596ed3f7332fc82d7174f (patch)
tree9029a66a95d8958871aae87bc437141c90121db5
parent325458ddf7b25815de68454644697f56f97ad640 (diff)
gbproxy: Increase timeouts for dl/ul unitdata tests
These tests run quite some time and I had issues with timeouts locally. Change-Id: Id99ffa14bf6bcb584688c410feb9163a4f0fb492
-rw-r--r--gbproxy/GBProxy_Tests.ttcn4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbproxy/GBProxy_Tests.ttcn b/gbproxy/GBProxy_Tests.ttcn
index e12d69fe..f1e5c796 100644
--- a/gbproxy/GBProxy_Tests.ttcn
+++ b/gbproxy/GBProxy_Tests.ttcn
@@ -1089,7 +1089,7 @@ private function f_TC_ul_unitdata(charstring id) runs on BSSGP_ConnHdlr {
testcase TC_ul_unitdata() runs on test_CT
{
- f_init();
+ f_init(60.0);
f_start_handlers(refers(f_TC_ul_unitdata), testcasename(), 1);
/* TODO: start multiple handlers (UEs) on various cells on same and other NSEs */
f_cleanup();
@@ -1115,7 +1115,7 @@ private function f_TC_dl_unitdata(charstring id) runs on BSSGP_ConnHdlr {
testcase TC_dl_unitdata() runs on test_CT
{
- f_init();
+ f_init(60.0);
f_start_handlers(refers(f_TC_dl_unitdata), testcasename(), 2);
/* TODO: start multiple handlers (UEs) on various cells on same and other NSEs */
f_cleanup();