blob: f6869691c19d1cef5aa61dfeb0243493cad2ca1e [file] [log] [blame]
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +02001/*
2 * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
Harald Welte9af6ddf2011-01-01 15:25:50 +01006 * it under the terms of the GNU Affero General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +02008 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
Harald Welte9af6ddf2011-01-01 15:25:50 +010015 * You should have received a copy of the GNU Affero General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +020017 *
18 */
19
20#include <stdio.h>
Harald Welte6bfda782009-06-26 20:30:46 +020021#include <stdlib.h>
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +020022
23#include <assert.h>
24
Holger Hans Peter Freyther08e324f2012-01-06 14:06:56 +010025#include <osmocom/core/application.h>
Pablo Neira Ayuso136f4532011-03-22 16:47:59 +010026#include <osmocom/core/select.h>
Holger Hans Peter Freyther08e324f2012-01-06 14:06:56 +010027
Neels Hofmeyr2d521a02016-05-14 00:57:04 +020028#include <openbsc/common_bsc.h>
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +020029#include <openbsc/abis_rsl.h>
Holger Hans Peter Freyther08e324f2012-01-06 14:06:56 +010030#include <openbsc/debug.h>
31#include <openbsc/gsm_subscriber.h>
Harald Welte2483f1b2016-06-19 18:06:02 +020032#include <openbsc/vlr.h>
Neels Hofmeyr8d878e82016-09-25 15:47:36 +020033
Neels Hofmeyre289a2a2016-09-25 15:58:01 +020034void test_dyn_ts_subslots(void)
35{
36 struct gsm_bts_trx_ts ts;
37
38 printf("Testing subslot numbers for pchan types\n");
39
40 ts.pchan = GSM_PCHAN_TCH_F;
41 OSMO_ASSERT(ts_subslots(&ts) == 1);
42
43 ts.pchan = GSM_PCHAN_TCH_H;
44 OSMO_ASSERT(ts_subslots(&ts) == 2);
45
46 ts.pchan = GSM_PCHAN_PDCH;
47 OSMO_ASSERT(ts_subslots(&ts) == 0);
48
49 ts.pchan = GSM_PCHAN_TCH_F_PDCH;
50 ts.flags = 0; /* TCH_F mode */
51 OSMO_ASSERT(ts_subslots(&ts) == 1);
52 ts.flags = TS_F_PDCH_ACTIVE;
Neels Hofmeyrc3f72f62016-09-25 15:33:02 +020053 OSMO_ASSERT(ts_subslots(&ts) == 0);
Neels Hofmeyre289a2a2016-09-25 15:58:01 +020054
55 ts.pchan = GSM_PCHAN_TCH_F_TCH_H_PDCH;
56 ts.dyn.pchan_is = GSM_PCHAN_TCH_F;
57 OSMO_ASSERT(ts_subslots(&ts) == 1);
58 ts.dyn.pchan_is = GSM_PCHAN_TCH_H;
59 OSMO_ASSERT(ts_subslots(&ts) == 2);
60 ts.dyn.pchan_is = GSM_PCHAN_PDCH;
61 OSMO_ASSERT(ts_subslots(&ts) == 0);
62}
63
Neels Hofmeyr8d878e82016-09-25 15:47:36 +020064int main(int argc, char **argv)
65{
66 osmo_init_logging(&log_info);
67
Neels Hofmeyre289a2a2016-09-25 15:58:01 +020068 test_dyn_ts_subslots();
Holger Hans Peter Freyther08e324f2012-01-06 14:06:56 +010069
70 return EXIT_SUCCESS;
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +020071}
72
Harald Weltef338a032011-01-14 15:55:42 +010073void _abis_nm_sendmsg() {}
Holger Hans Peter Freyther7673ce42009-08-10 06:40:05 +020074void sms_alloc() {}
Holger Hans Peter Freyther900394a2013-12-27 20:10:24 +010075void sms_free() {}
Holger Hans Peter Freyther78891072010-09-06 09:36:02 +080076void gsm_net_update_ctype(struct gsm_network *network) {}
Holger Hans Peter Freytherd9cdd052010-12-21 13:43:52 +010077void gsm48_secure_channel() {}
Holger Hans Peter Freytherffccb772010-12-28 17:47:43 +010078void paging_request_stop() {}
Holger Hans Peter Freyther763b42a2010-12-29 11:07:22 +010079void vty_out() {}
Holger Hans Peter Freyther800d29d2009-06-10 12:36:38 +020080
Harald Welte2483f1b2016-06-19 18:06:02 +020081void ipa_client_conn_clear_queue() {}
82void ipa_client_conn_close() {}
83void ipa_client_conn_create() {}
84void ipa_client_conn_destroy() {}
85void ipa_client_conn_open() {}
86void ipa_client_conn_send() {}
87void ipa_msg_push_header() {}
88void ipaccess_bts_handle_ccm() {}
Holger Hans Peter Freyther98657d52010-01-11 16:42:07 +010089
Harald Welte2483f1b2016-06-19 18:06:02 +020090struct tlv_definition nm_att_tlvdef;