aboutsummaryrefslogtreecommitdiffstats
path: root/tests/sndcp_xid
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2018-04-16 00:57:10 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2018-04-16 01:03:48 +0200
commit5bd340eb5a176af428847949268869d71de8802c (patch)
tree7b65a93dc9a2e4309f04ca7921535b9b598c1930 /tests/sndcp_xid
parent69e356be93c420b5e2f8b96fbc89ef889cbcfe53 (diff)
use osmo_init_logging2(), fix regression test memleaks
Particularly gbproxy_test.c had various mem leaks, which (will) show up with gcc (Debian 7.3.0-15) 7.3.0 address sanitizer. Fix those leaks to verify that we don't have memleaks in the production code. Change-Id: Ia4204c8b3d895b42c103edecb61b99d3d22bd36f
Diffstat (limited to 'tests/sndcp_xid')
-rw-r--r--tests/sndcp_xid/sndcp_xid_test.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/sndcp_xid/sndcp_xid_test.c b/tests/sndcp_xid/sndcp_xid_test.c
index dc6da8230..5ed695c5e 100644
--- a/tests/sndcp_xid/sndcp_xid_test.c
+++ b/tests/sndcp_xid/sndcp_xid_test.c
@@ -261,10 +261,11 @@ static struct log_info info = {
int main(int argc, char **argv)
{
void *xid_ctx;
-
- osmo_init_logging(&info);
+ void *log_ctx;
xid_ctx = talloc_named_const(NULL, 0, "xid_ctx");
+ log_ctx = talloc_named_const(xid_ctx, 0, "log");
+ osmo_init_logging2(log_ctx, &info);
test_xid_decode_realworld(xid_ctx);
test_xid_encode_decode(xid_ctx);
@@ -272,7 +273,9 @@ int main(int argc, char **argv)
printf("Done\n");
talloc_report_full(xid_ctx, stderr);
+ talloc_free(log_ctx);
OSMO_ASSERT(talloc_total_blocks(xid_ctx) == 1);
+ talloc_free(xid_ctx);
return 0;
}