osmo-ttcn3-hacks/bts
Harald Welte 3355c4dc28 bts: HACK: Run TRXC over 127.0.0.1 only
Due to https://osmocom.org/issues/4798 I'm unable to make fake_trx.py
work on anything but 127.0.0.1

Using the config changes in this commit, I can exectue the tests against
the following fake_trx.py command:

./fake_trx.py -R 127.0.0.1 -r 127.0.0.1 --trx TRX1@127.0.0.1:5700/1   --trx TRX2@127.0.0.1:5700/2 --trx TRX3@127.0.0.1:5700/3

Change-Id: I37e78b4b68beca2ceb15819a0fc30a0134cb177d
Related: OS#4798
2020-10-12 17:19:20 +02:00
..
BTS_Tests.cfg bts: HACK: Run TRXC over 127.0.0.1 only 2020-10-12 17:19:20 +02:00
BTS_Tests.default {BTS,PCU}_Tests: bump default PCUIF version: 9 -> 10 2020-09-22 00:53:26 +07:00
BTS_Tests.ttcn bts: Increase SI sampling duration if SI2quater is involved 2020-10-12 13:15:53 +00:00
BTS_Tests_LAPDm.ttcn BTS_Tests: group hopping parameters into a separate record 2020-09-14 09:04:39 +00:00
BTS_Tests_OML.ttcn library/IPA: split t_ASP_IPA_EVT_UD into send / receive templates 2020-05-18 20:47:14 +07:00
BTS_Tests_SMSCB.ttcn BTS_Tests_SMSCB: handle frequency hopping parameters 2020-09-14 09:04:39 +00:00
BTS_Tests_perf.ttcn bts/BTS_Tests: add frequency hopping parameters 2020-05-29 22:33:13 +07:00
README.md Update README.md of several TTCN3 test suites 2019-11-15 18:49:09 +00:00
expected-results.xml bts/expected-results: TC_rsl_bs_pwr_static_{ass,power_control} pass now 2020-06-16 01:44:21 +07:00
gen_links.sh library: implement SI3 Rest Octets as per 3GPP TS 44.018 2020-05-02 17:06:33 +07:00
osmo-bsc.cfg bts: Update osmo-bsc.cfg and osmo-bts.cfg 2020-10-12 17:19:20 +02:00
osmo-bts.cfg bts: HACK: Run TRXC over 127.0.0.1 only 2020-10-12 17:19:20 +02:00
regen_makefile.sh lib/IPA_Emulation: Build IPA_CTRL conditionally based on define 2019-06-13 16:33:49 +02:00

README.md

BTS_Tests.ttcn

  • external interfaces
    • A-bis side: RSL (emulates BSC-side server)
    • Um side: L1CTL to control MS
    • PCU side: pcu_socket
    • VTY
    • CTRL

{% dot bts_tests.svg digraph G { rankdir=LR; { rank=same; BTS, BSC}; BTS [label="IUT\nosmo-bts-trx",shape="box"]; ATS [label="ATS\nBTS_Tests.ttcn"]; BSC [label="osmo-bsc\nOML only"]; BTS -> fake_trx [label="bursts"]; fake_trx -> trxcon [label="bursts"]; trxcon -> ATS [label="GSM MAC blocks"];

BTS -> BSC [label="A-bis OML"]; BTS -> ATS [label="A-bis RSL"];

ATS -> BTS [label="pcu_sock"]; ATS -> BSC [label="VTY"]; ATS -> BTS [label="CTRL"]; } %}