blob: 43d076073b83536449968ed5a1a3e24a06902429 [file] [log] [blame]
Pau Espin Pedrolb2ce2f22018-05-07 17:26:59 +02001#!/usr/bin/env python3
2from osmo_gsm_tester.testenv import *
3
Pau Espin Pedrol155a3552018-05-09 11:24:23 +02004import testlib
5suite.test_import_modules_register_for_cleanup(testlib)
Pau Espin Pedrolb2ce2f22018-05-07 17:26:59 +02006from testlib import call_test_setup_run
7
8def my_bts_setup(bts):
9 bts.set_num_trx(1)
10 bts.set_trx_phy_channel(0, 0, 'CCCH+SDCCH4')
11 bts.set_trx_phy_channel(0, 1, 'SDCCH8')
12 bts.set_trx_phy_channel(0, 2, 'TCH/H')
13 bts.set_trx_phy_channel(0, 3, 'TCH/H')
14 bts.set_trx_phy_channel(0, 4, 'TCH/H')
15 bts.set_trx_phy_channel(0, 5, 'TCH/H')
16 bts.set_trx_phy_channel(0, 6, 'TCH/H')
17 bts.set_trx_phy_channel(0, 7, 'TCH/H')
18
19call_test_setup_run(bts_setup_cb=my_bts_setup)