osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/29891 )
Change subject: BSC: increase BSSMAP RESET-ACK timeout ......................................................................
BSC: increase BSSMAP RESET-ACK timeout
On my laptop I hit the 5 seconds timeout every other time I start tests, so increase it to 10 seconds.
Change-Id: I76fa91280472b87235cf985af68bc2a6183d5e4a --- M bsc/BSC_Tests.ttcn 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/91/29891/1
diff --git a/bsc/BSC_Tests.ttcn b/bsc/BSC_Tests.ttcn index 4753ae9..075ff32 100644 --- a/bsc/BSC_Tests.ttcn +++ b/bsc/BSC_Tests.ttcn @@ -909,7 +909,7 @@ private function f_legacy_bssap_reset(integer bssap_idx := 0) runs on test_CT { var BSSAP_N_UNITDATA_ind ud_ind; var boolean reset_received := false; - timer T := 5.0; + timer T := 10.0; BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[bssap_idx].sccp_addr_peer, g_bssap[bssap_idx].sccp_addr_own, ts_BSSMAP_Reset(0, g_osmux_enabled_cn))); T.start;