osmith has uploaded this change for review.

View Change

test-ranap: don't use libosmocore's tall_msgb_ctx

Use msgb_ctx from test_common.c instead, which is the same pointer after
test_common_init() ran. tall_msgb_ctx from libosmocore is no longer
getting exported since I13169c00a59fb59513dfc598de5a71d094492422.

Fix for:
/usr/bin/ld: test-ranap.o: in function `main':
/build/src/tests/test-ranap.c:201: undefined reference to `tall_msgb_ctx'
/usr/bin/ld: /build/src/tests/test-ranap.c:201: undefined reference to `tall_msgb_ctx'

Change-Id: I7d0b3068760c2cd7067e2a5d929f03c7e7d1decb
---
M src/tests/test-ranap.c
M src/tests/test_common.c
2 files changed, 21 insertions(+), 3 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-iuh refs/changes/87/31587/1
diff --git a/src/tests/test-ranap.c b/src/tests/test-ranap.c
index 633bb2b..e593bd9 100644
--- a/src/tests/test-ranap.c
+++ b/src/tests/test-ranap.c
@@ -32,7 +32,7 @@

#include "test_common.h"

-extern void *tall_msgb_ctx;
+extern void *msgb_ctx;

static void test_aper_int(uint32_t inp)
{
@@ -198,7 +198,7 @@

printf("report\n");
talloc_report(talloc_asn1_ctx, stdout);
- talloc_report(tall_msgb_ctx, stdout);
+ talloc_report(msgb_ctx, stdout);
//talloc_report(NULL, stdout);

test_common_cleanup();
diff --git a/src/tests/test_common.c b/src/tests/test_common.c
index 187a269..36d9954 100644
--- a/src/tests/test_common.c
+++ b/src/tests/test_common.c
@@ -71,7 +71,7 @@
};

static void *tall_hnb_ctx;
-static void *msgb_ctx;
+void *msgb_ctx;

int test_common_init(void)
{

To view, visit change 31587. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-iuh
Gerrit-Branch: master
Gerrit-Change-Id: I7d0b3068760c2cd7067e2a5d929f03c7e7d1decb
Gerrit-Change-Number: 31587
Gerrit-PatchSet: 1
Gerrit-Owner: osmith <osmith@sysmocom.de>
Gerrit-MessageType: newchange