aboutsummaryrefslogtreecommitdiffstats
path: root/tests/handover/handover_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/handover/handover_test.c')
-rw-r--r--tests/handover/handover_test.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/tests/handover/handover_test.c b/tests/handover/handover_test.c
index c7bd8f8d..407ed95d 100644
--- a/tests/handover/handover_test.c
+++ b/tests/handover/handover_test.c
@@ -75,14 +75,18 @@ int main(int argc, char **argv)
fprintf(stderr, "Failed to create BTS structure\n");
exit(1);
}
+ if (bts_init(bts) < 0) {
+ fprintf(stderr, "unable to init BTS\n");
+ exit(1);
+ }
+
trx = gsm_bts_trx_alloc(bts);
if (!trx) {
- fprintf(stderr, "Failed to TRX structure\n");
+ fprintf(stderr, "Failed to alloc TRX structure\n");
exit(1);
}
-
- if (bts_init(bts) < 0) {
- fprintf(stderr, "unable to to open bts\n");
+ if (bts_trx_init(trx) < 0) {
+ fprintf(stderr, "unable to init TRX\n");
exit(1);
}
@@ -268,6 +272,7 @@ int bts_model_apply_oml(struct gsm_bts *bts, struct msgb *msg, struct tlv_parsed
int bts_model_opstart(struct gsm_bts *bts, struct gsm_abis_mo *mo, void *obj) { return 0; }
int bts_model_chg_adm_state(struct gsm_bts *bts, struct gsm_abis_mo *mo, void *obj, uint8_t adm_state) { return 0; }
int bts_model_init(struct gsm_bts *bts) { return 0; }
+int bts_model_trx_init(struct gsm_bts_trx *trx) { return 0; }
int bts_model_trx_deact_rf(struct gsm_bts_trx *trx) { return 0; }
int bts_model_trx_close(struct gsm_bts_trx *trx) { return 0; }
void trx_get_hlayer1(void) {}