blob: af55dfd9b222098908d9490ca853ebd57356617e [file] [log] [blame]
Pau Espin Pedrol3bf1e132018-05-08 15:59:26 +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 Pedrol3bf1e132018-05-08 15:59:26 +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/F')
13 bts.set_trx_phy_channel(0, 3, 'TCH/F')
14 bts.set_trx_phy_channel(0, 4, 'TCH/F')
15 bts.set_trx_phy_channel(0, 5, 'TCH/F')
16 bts.set_trx_phy_channel(0, 6, 'TCH/F')
17 bts.set_trx_phy_channel(0, 7, 'TCH/F')
18
19call_test_setup_run(bts_setup_cb=my_bts_setup)