lynxis lazus has submitted this change and it was merged. ( 
https://gerrit.osmocom.org/10390 )

Change subject: sgsn: fix TC_attach_check_complete_resend
......................................................................

sgsn: fix TC_attach_check_complete_resend

TC_attach_check_complete_resend tests if the SGSN sends out the SGSN
Attach Accept multiple times. If the MS disappear,
there is no need for a ATTACH REJECT.

Change-Id: I3fa5c100b8389e184acf1e71e2792e5474c22dec
---
M sgsn/SGSN_Tests.ttcn
1 file changed, 4 insertions(+), 1 deletion(-)

Approvals:
  Jenkins Builder: Verified
  Harald Welte: Looks good to me, approved



diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn
index 66319b5..8094866 100644
--- a/sgsn/SGSN_Tests.ttcn
+++ b/sgsn/SGSN_Tests.ttcn
@@ -1821,13 +1821,16 @@
        f_send_l3_gmm_llc(ts_GMM_ATTACH_REQ(f_mi_get_lv(), f_random_RAI(), 
true, false, omit, omit));
        f_gmm_auth();

+       timer T := 10.0;
+       T.start;
        alt {
-               [] BSSGP[0].receive(tr_BD_L3_MT(tr_GMM_ATTACH_REJECT(?))) {
+               [] T.timeout {
                        /* break */
                }
                [] BSSGP[0].receive(tr_BD_L3_MT(tr_GMM_ATTACH_ACCEPT(*, *, *))) 
{
                        /* ignore */
                        count_req := count_req + 1;
+                       T.start;
                        repeat;
                }
        }

--
To view, visit https://gerrit.osmocom.org/10390
To unsubscribe, or for help writing mail filters, visit 
https://gerrit.osmocom.org/settings

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-MessageType: merged
Gerrit-Change-Id: I3fa5c100b8389e184acf1e71e2792e5474c22dec
Gerrit-Change-Number: 10390
Gerrit-PatchSet: 3
Gerrit-Owner: lynxis lazus <lyn...@fe80.eu>
Gerrit-Reviewer: Harald Welte <lafo...@gnumonks.org>
Gerrit-Reviewer: Jenkins Builder (1000002)
Gerrit-Reviewer: lynxis lazus <lyn...@fe80.eu>

Reply via email to