sgsn: Avoid race condition in TC_suspend_rau()

In f_routing_area_update() we are sending a RAU Complete to the SGSN
and then immediately afterwards send a GTP-U from the simulated
GGSN to the SGSN.  That GTP might reach the SGSN faster than the
RAU Complete, resulting in a test failure.

Change-Id: Ic489e0857115cf24965e413a39918edc5a8f44f8
This commit is contained in:
Harald Welte 2021-03-20 15:40:00 +01:00
parent 1317faa7fc
commit d5836dca12
1 changed files with 3 additions and 0 deletions

View File

@ -3105,6 +3105,9 @@ private function f_TC_suspend_rau(charstring id) runs on BSSGP_ConnHdlr {
/* perform RAU (implicit RESUME) */
f_routing_area_update(g_pars.ra);
/* give SGSN some time to actually receve + process the RAU Complete we sent */
f_sleep(0.5);
/* now data should be flowing again */
f_gtpu_xceive_mt(apars, f_rnd_octstring(100));