aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2022-01-12 13:46:53 +0100
committerPhilipp Maier <pmaier@sysmocom.de>2022-01-12 13:48:19 +0100
commitbc518cf152977eb397cde1f194f1c15013203c41 (patch)
treed02a83db35e2b5db333ce0af43cd8cc9d1e937df
parentadec82f3b1c725e8a70d327b9592940fbdeaaff7 (diff)
test_common: use osmo_init_logging2 instead of osmo_init_logging
osmo_init_logging is deprecated, lets use osmo_init_logging2 Change-Id: I00ff05e27a89f515f0ce874d6f130b2937b8f1cc
-rw-r--r--src/tests/test_common.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tests/test_common.c b/src/tests/test_common.c
index 899c73a..187a269 100644
--- a/src/tests/test_common.c
+++ b/src/tests/test_common.c
@@ -70,16 +70,18 @@ static const struct log_info test_log_info = {
.num_cat = ARRAY_SIZE(log_cat),
};
+static void *tall_hnb_ctx;
static void *msgb_ctx;
int test_common_init(void)
{
int rc;
+ tall_hnb_ctx = talloc_named_const(NULL, 0, "hnb_context");
msgb_ctx = msgb_talloc_ctx_init(NULL, 0);
talloc_asn1_ctx = talloc_named_const(NULL, 0, "asn1_context");
- rc = osmo_init_logging(&test_log_info);
+ rc = osmo_init_logging2(tall_hnb_ctx, &test_log_info);
if (rc < 0)
exit(1);