tests: voice: Move mo_mt_call.py to mo_mt_call_tchf.py

Change-Id: I7306e62ad4c4294370690cf9006871f798a7b9ec
This commit is contained in:
Pau Espin 2018-05-08 15:59:26 +02:00
parent b2ce2f2221
commit 3bf1e13b13
2 changed files with 18 additions and 5 deletions

View File

@ -1,5 +0,0 @@
#!/usr/bin/env python3
from osmo_gsm_tester.testenv import *
from testlib import call_test_setup_run
call_test_setup_run()

18
suites/voice/mo_mt_call_tchf.py Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env python3
from osmo_gsm_tester.testenv import *
add_subdir_to_import_path("lib")
from testlib import call_test_setup_run
def my_bts_setup(bts):
bts.set_num_trx(1)
bts.set_trx_phy_channel(0, 0, 'CCCH+SDCCH4')
bts.set_trx_phy_channel(0, 1, 'SDCCH8')
bts.set_trx_phy_channel(0, 2, 'TCH/F')
bts.set_trx_phy_channel(0, 3, 'TCH/F')
bts.set_trx_phy_channel(0, 4, 'TCH/F')
bts.set_trx_phy_channel(0, 5, 'TCH/F')
bts.set_trx_phy_channel(0, 6, 'TCH/F')
bts.set_trx_phy_channel(0, 7, 'TCH/F')
call_test_setup_run(bts_setup_cb=my_bts_setup)