aboutsummaryrefslogtreecommitdiffstats
path: root/tests/fn/FnTest.cpp
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2021-01-13 18:54:38 +0100
committerpespin <pespin@sysmocom.de>2021-01-18 10:37:05 +0000
commitac3fd120268a38fb4794982823c6abc8e964cfe8 (patch)
treebc88fdd84f73ace721b35db63efac5935848a952 /tests/fn/FnTest.cpp
parent695ce771676732045ac89ac03b43ba071befeafb (diff)
Split PCU global PCU object from BTS object
Currently the BTS object (and gprs_rlcmac_bts struct) are used to hold both PCU global fields and BTS specific fields, all mangled together. The BTS is even accessed in lots of places by means of a singleton. This patch introduces a new struct gprs_pcu object aimed at holding all global state, and several fields are already moved from BTS to it. The new object can be accessed as global variable "the_pcu", reusing and including an already exisitng "the_pcu" global variable only used for bssgp related purposes so far. This is only a first step towards having a complete split global pcu and BTS, some fields are still kept in BTS and will be moved over follow-up smaller patches in the future (since this patch is already quite big). So far, the code still only supports one BTS, which can be accessed using the_pcu->bts. In the future that field will be replaced with a list, and the BTS singletons will be removed. The cur_fn output changes in TbfTest are actually a side effect fix, since the singleton main_bts() now points internally to the_pcu->bts, hence the same we allocate and assign in the test. Beforehand, "the_bts" was allocated in the stack while main_bts() still returned an unrelated singleton BTS object instance. Related: OS#4935 Change-Id: I88e3c6471b80245ce3798223f1a61190f14aa840
Diffstat (limited to 'tests/fn/FnTest.cpp')
-rw-r--r--tests/fn/FnTest.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/fn/FnTest.cpp b/tests/fn/FnTest.cpp
index 35249f59..3185bd5a 100644
--- a/tests/fn/FnTest.cpp
+++ b/tests/fn/FnTest.cpp
@@ -53,7 +53,7 @@ static void set_fn(BTS * bts, uint32_t fn)
static void run_test()
{
- BTS bts;
+ BTS bts(the_pcu);
uint32_t fn;
printf("RFN_MODULUS=%i\n",RFN_MODULUS);
@@ -154,7 +154,11 @@ int main(int argc, char **argv)
log_set_print_filename(osmo_stderr_target, 0);
log_set_log_level(osmo_stderr_target, LOGL_DEBUG);
+ the_pcu = gprs_pcu_alloc(tall_pcu_ctx);
+
run_test();
+
+ talloc_free(the_pcu);
return EXIT_SUCCESS;
}