X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=test%2Ftstsoap1.c;h=80df562c22f5503fdd80dad37c4d23157776da0d;hb=67471e87c134f2503546cdd250cd169b7d43d566;hp=85a917783e2ad54feff9ee7de62a7ab7552028e7;hpb=06ae818deffa84ec4bc1308051ef411845dd4ce5;p=yaz-moved-to-github.git diff --git a/test/tstsoap1.c b/test/tstsoap1.c index 85a9177..80df562 100644 --- a/test/tstsoap1.c +++ b/test/tstsoap1.c @@ -2,28 +2,31 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: tstsoap1.c,v 1.5 2006-01-29 21:59:13 adam Exp $ + * $Id: tstsoap1.c,v 1.8 2006-10-04 16:59:34 mike Exp $ */ #include -#if HAVE_XML2 +#if YAZ_HAVE_XML2 #include #endif #include -void tst() +void tst(void) { -#if HAVE_XML2 +#if YAZ_HAVE_XML2 xmlChar *buf_out; int len_out; - xmlDocPtr doc = xmlNewDoc(BAD_CAST "1.0"); - YAZ_CHECK(doc); + xmlDocPtr doc; + xmlNodePtr top; #if 0 const char *val = "jordbær"; /* makes xmlDocDumpMemory hang .. */ #else const char *val = "jordbaer"; /* OK */ #endif - xmlNodePtr top = xmlNewNode(0, BAD_CAST "top"); + doc = xmlNewDoc(BAD_CAST "1.0"); + YAZ_CHECK(doc); + + top = xmlNewNode(0, BAD_CAST "top"); YAZ_CHECK(top); xmlNewTextChild(top, 0, BAD_CAST "sub", BAD_CAST val); @@ -35,14 +38,14 @@ void tst() #endif -/* HAVE_XML2 */ +/* YAZ_HAVE_XML2 */ #endif } int main(int argc, char **argv) { YAZ_CHECK_INIT(argc, argv); -#if HAVE_XML2 +#if YAZ_HAVE_XML2 LIBXML_TEST_VERSION; #endif tst();