X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftstccl.c;h=2a9534553bbb006c8b9c9ac903e286cbcfdcc20d;hb=2edee0444eb7d2aba3528a6ae6523c2d1dd92a18;hp=6505c8751b838fc1b16534fab14661b84e9efb14;hpb=aef662a463f8175044f519754e178c1291ee3014;p=yaz-moved-to-github.git diff --git a/test/tstccl.c b/test/tstccl.c index 6505c87..2a95345 100644 --- a/test/tstccl.c +++ b/test/tstccl.c @@ -1,14 +1,14 @@ /* - * Copyright (C) 1995-2006, Index Data ApS + * Copyright (C) 1995-2007, Index Data ApS * See the file LICENSE for details. * - * $Id: tstccl.c,v 1.11 2006-07-31 11:42:32 adam Exp $ + * $Id: tstccl.c,v 1.13 2007-01-08 10:48:07 adam Exp $ */ /* CCL test */ #include -#include +#include #include @@ -98,6 +98,45 @@ void tst1(int pass) "x r=o\n" ); break; + case 3: +#if YAZ_HAVE_XML2 + if (1) + { + xmlDocPtr doc; + int r; + const char *addinfo = 0; + const char *xml_str = + "\n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + " \n" + "\n"; + + doc = xmlParseMemory(xml_str, strlen(xml_str)); + YAZ_CHECK(doc); + + r = ccl_xml_config(bibset, xmlDocGetRootElement(doc), &addinfo); + YAZ_CHECK_EQ(r, 0); + } + break; +#else + return; +#endif default: YAZ_CHECK(0); return; @@ -169,9 +208,11 @@ void tst1(int pass) int main(int argc, char **argv) { YAZ_CHECK_INIT(argc, argv); + YAZ_CHECK_LOG(); tst1(0); tst1(1); tst1(2); + tst1(3); YAZ_CHECK_TERM; } /*