From: Adam Dickmeiss Date: Mon, 3 Dec 2007 11:47:53 +0000 (+0000) Subject: Log records when they differ in tl_fetch_compare X-Git-Tag: ZEBRA.2.0.20~45 X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=commitdiff_plain;h=4e66751dbded138d3a4c5f6256d1a514b212db7e Log records when they differ in tl_fetch_compare --- diff --git a/test/api/testlib.c b/test/api/testlib.c index 2be2920..6491368 100644 --- a/test/api/testlib.c +++ b/test/api/testlib.c @@ -1,4 +1,4 @@ -/* $Id: testlib.c,v 1.47 2007-11-30 12:19:09 adam Exp $ +/* $Id: testlib.c,v 1.48 2007-12-03 11:47:53 adam Exp $ Copyright (C) 1995-2007 Index Data ApS @@ -493,6 +493,11 @@ ZEBRA_RES tl_fetch_compare(ZebraHandle zh, res = ZEBRA_FAIL; else if (memcmp(cmp_rec, rec_buf, rec_len)) res = ZEBRA_FAIL; + if (res == ZEBRA_FAIL) + { + yaz_log(YLOG_LOG, "Expected: %s", cmp_rec); + yaz_log(YLOG_LOG, "Got: %.*s", rec_len, rec_buf); + } } odr_destroy(odr); return res;