tests: dyn_ts_*: Add tests to verify dyn ts with gprs disabled

Change-Id: If943ae0fb4e56787df02b09dea7387cb13eb9db3
diff --git a/suites/dyn_ts_osmo/mo_mt_call_dyn_osmo_no_gprs.py b/suites/dyn_ts_osmo/mo_mt_call_dyn_osmo_no_gprs.py
new file mode 100755
index 0000000..d80d27a
--- /dev/null
+++ b/suites/dyn_ts_osmo/mo_mt_call_dyn_osmo_no_gprs.py
@@ -0,0 +1,21 @@
+#!/usr/bin/env python3
+from osmo_gsm_tester.testenv import *
+
+import testlib
+suite.test_import_modules_register_for_cleanup(testlib)
+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_TCH/H_PDCH')
+    bts.set_trx_phy_channel(0, 3, 'TCH/F_TCH/H_PDCH')
+    bts.set_trx_phy_channel(0, 4, 'TCH/F_TCH/H_PDCH')
+    bts.set_trx_phy_channel(0, 5, 'TCH/F_TCH/H_PDCH')
+    bts.set_trx_phy_channel(0, 6, 'TCH/F_TCH/H_PDCH')
+    bts.set_trx_phy_channel(0, 7, 'TCH/F_TCH/H_PDCH')
+
+# Check that dynamic timeslots work fine with gprs disabled.
+
+call_test_setup_run(bts_setup_cb=my_bts_setup, gprs_enable=False)