neels submitted this change.

View Change



1 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.

Approvals: laforge: Looks good to me, approved pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified
hnbgw: fix PLMN in g_hnb_cfg

To get 001-01, we need to encode the placeholder 0xf nibble.

Since recently, osmo-hnbgw cares about the PLMN in messages, in specific
cases: in upcoming CN pool tests, the PLMN is part of the algorithm that
picks the CN link. So let's encode 001-01 correctly.

Change-Id: I5299c521479dc25ea0f82d7d294d53942960d2cf
---
M hnbgw/HNBGW_Tests.ttcn
1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/hnbgw/HNBGW_Tests.ttcn b/hnbgw/HNBGW_Tests.ttcn
index 3106750..bf70003 100644
--- a/hnbgw/HNBGW_Tests.ttcn
+++ b/hnbgw/HNBGW_Tests.ttcn
@@ -337,7 +337,7 @@
for (var integer i := 0; i < g_num_hnbs; i := i+1) {
g_hnb_cfg[i] := {
lai := {
- mcc_mnc := '00101'H,
+ mcc_mnc := '00F110'H,
lac := 2342 + i
},
sac := 55

To view, visit change 33476. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I5299c521479dc25ea0f82d7d294d53942960d2cf
Gerrit-Change-Number: 33476
Gerrit-PatchSet: 5
Gerrit-Owner: neels <nhofmeyr@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge@osmocom.org>
Gerrit-Reviewer: neels <nhofmeyr@sysmocom.de>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>
Gerrit-MessageType: merged