aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2019-07-16 11:53:53 +0200
committerlaforge <laforge@gnumonks.org>2019-07-24 19:31:24 +0000
commit8610e6b2c289cb0968bd584c1911d885f5e0fa94 (patch)
treecb0549259cb58f6aec256165b1bb9a34f70f1aba
parent50dc3517e69b246fc52141e1a7f09db3dbf321a5 (diff)
osmo-bsc.cfg: work with osmo-bts example cfg
Change cell_identity and unit-id to match osmo-bts-virtual.cfg. Related: OS#3369 Change-Id: Ie8001611756b661ff1871508c6248b2e990ba1d7
-rw-r--r--doc/examples/osmo-bsc/osmo-bsc.cfg4
-rwxr-xr-xtests/ctrl_test_runner.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/examples/osmo-bsc/osmo-bsc.cfg b/doc/examples/osmo-bsc/osmo-bsc.cfg
index 77b609464..f814788f1 100644
--- a/doc/examples/osmo-bsc/osmo-bsc.cfg
+++ b/doc/examples/osmo-bsc/osmo-bsc.cfg
@@ -22,7 +22,7 @@ network
bts 0
type sysmobts
band DCS1800
- cell_identity 0
+ cell_identity 6969
location_area_code 1
base_station_id_code 63
ms max power 15
@@ -36,7 +36,7 @@ network
channel-description bs-pa-mfrms 5
channel-description bs-ag-blks-res 1
early-classmark-sending forbidden
- ipa unit-id 0 0
+ ipa unit-id 6969 0
oml ipa stream-id 255 line 0
codec-support fr
gprs mode none
diff --git a/tests/ctrl_test_runner.py b/tests/ctrl_test_runner.py
index cc37c9702..4d87b7407 100755
--- a/tests/ctrl_test_runner.py
+++ b/tests/ctrl_test_runner.py
@@ -198,7 +198,7 @@ class TestCtrlBSC(TestCtrlBase):
r = self.do_get('bts.0.cell-identity')
self.assertEquals(r['mtype'], 'GET_REPLY')
self.assertEquals(r['var'], 'bts.0.cell-identity')
- self.assertEquals(r['value'], '0')
+ self.assertEquals(r['value'], '6969')
r = self.do_set('bts.0.cell-identity', '23')
self.assertEquals(r['mtype'], 'SET_REPLY')