This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Pau Espin Pedrol gerrit-no-reply at lists.osmocom.orgPau Espin Pedrol has submitted this change and it was merged.
Change subject: tests: voice: Move mo_mt_call.py to mo_mt_call_tchf.py
......................................................................
tests: voice: Move mo_mt_call.py to mo_mt_call_tchf.py
Change-Id: I7306e62ad4c4294370690cf9006871f798a7b9ec
---
D suites/voice/mo_mt_call.py
A suites/voice/mo_mt_call_tchf.py
2 files changed, 18 insertions(+), 5 deletions(-)
Approvals:
Pau Espin Pedrol: Looks good to me, approved
Jenkins Builder: Verified
diff --git a/suites/voice/mo_mt_call.py b/suites/voice/mo_mt_call.py
deleted file mode 100755
index 093d1e8..0000000
--- a/suites/voice/mo_mt_call.py
+++ /dev/null
@@ -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()
diff --git a/suites/voice/mo_mt_call_tchf.py b/suites/voice/mo_mt_call_tchf.py
new file mode 100755
index 0000000..012ce52
--- /dev/null
+++ b/suites/voice/mo_mt_call_tchf.py
@@ -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)
--
To view, visit https://gerrit.osmocom.org/8068
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: merged
Gerrit-Change-Id: I7306e62ad4c4294370690cf9006871f798a7b9ec
Gerrit-PatchSet: 1
Gerrit-Project: osmo-gsm-tester
Gerrit-Branch: master
Gerrit-Owner: Pau Espin Pedrol <pespin at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: Pau Espin Pedrol <pespin at sysmocom.de>