From be53012f9c14b1bf27b16f4fa2d0f58f8f0393ca Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Wed, 18 Jan 2012 17:20:23 +0100 Subject: nat: Print the sizes and the offending data in case of a failure --- openbsc/tests/bsc-nat/bsc_nat_test.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'openbsc/tests') diff --git a/openbsc/tests/bsc-nat/bsc_nat_test.c b/openbsc/tests/bsc-nat/bsc_nat_test.c index 65ff4f65a..ab97db1ee 100644 --- a/openbsc/tests/bsc-nat/bsc_nat_test.c +++ b/openbsc/tests/bsc-nat/bsc_nat_test.c @@ -267,7 +267,11 @@ static void copy_to_msg(struct msgb *msg, const uint8_t *data, unsigned int leng static void verify_msg(struct msgb *out, const uint8_t *ref, int ref_len) { if (out->len != ref_len) { - printf("FAIL: The size should match.\n"); + printf("FAIL: The size should match: %d vs. %d\n", + out->len, ref_len); + printf("%s\n", osmo_hexdump(out->data, out->len)); + printf("Wanted\n"); + printf("%s\n", osmo_hexdump(ref, ref_len)); abort(); } -- cgit v1.2.3