aboutsummaryrefslogtreecommitdiffstats
path: root/sgsn/SGSN_Tests.ttcn
diff options
context:
space:
mode:
Diffstat (limited to 'sgsn/SGSN_Tests.ttcn')
-rw-r--r--sgsn/SGSN_Tests.ttcn12
1 files changed, 8 insertions, 4 deletions
diff --git a/sgsn/SGSN_Tests.ttcn b/sgsn/SGSN_Tests.ttcn
index 1f63dfae..03c9d05b 100644
--- a/sgsn/SGSN_Tests.ttcn
+++ b/sgsn/SGSN_Tests.ttcn
@@ -924,10 +924,6 @@ function f_detach_mo(BIT3 detach_type, boolean power_off, boolean expect_purge,
mtc.stop;
/* TODO: check if any PDP contexts are deactivated on network side? */
}
- [power_off] BSSGP[bssgp_index].receive(tr_BD_L3_MT(?)) -> value bd {
- setverdict(fail, "Unexpected Layer 3 package received in power-off DETACH");
- mtc.stop;
- }
[power_off] T.timeout {
setverdict(pass);
}
@@ -936,6 +932,14 @@ function f_detach_mo(BIT3 detach_type, boolean power_off, boolean expect_purge,
setverdict(pass);
/* TODO: check if any PDP contexts are deactivated on network side? */
}
+ [] BSSGP[bssgp_index].receive(tr_BD_L3_MT(?)) -> value bd {
+ if (power_off) {
+ setverdict(fail, "Unexpected Layer 3 package received in power-off DETACH");
+ } else {
+ setverdict(fail, "Unexpected Layer 3 package received in normal DETACH");
+ }
+ mtc.stop;
+ }
[] BSSGP[bssgp_index].receive { repeat; }
}
}