laforge submitted this change.
test_common: use osmo_init_logging2 instead of osmo_init_logging
osmo_init_logging is deprecated, lets use osmo_init_logging2
Change-Id: I00ff05e27a89f515f0ce874d6f130b2937b8f1cc
---
M src/tests/test_common.c
1 file changed, 3 insertions(+), 1 deletion(-)
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 @@
.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);
To view, visit change 26892. To unsubscribe, or for help writing mail filters, visit settings.