Rename C-based tests
[yaz-moved-to-github.git] / test / tstsoap1.c
diff --git a/test/tstsoap1.c b/test/tstsoap1.c
deleted file mode 100644 (file)
index eb2ba11..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-/* This file is part of the YAZ toolkit.
- * Copyright (C) 1995-2010 Index Data
- * See the file LICENSE for details.
- */
-
-#include <stdlib.h>
-#if YAZ_HAVE_XML2
-#include <libxml/parser.h>
-#endif
-#include <yaz/test.h>
-
-void tst(void)
-{
-#if YAZ_HAVE_XML2
-    xmlChar *buf_out;
-    int len_out;
-    xmlDocPtr doc;
-    xmlNodePtr top;
-#if 0
-    const char *val = "jordb" "\xe6" "r"; /* makes xmlDocDumpMemory hang .. */
-#else
-    const char *val = "jordbaer"; /* OK */
-#endif
-    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);
-    xmlDocSetRootElement(doc, top);
-    
-    xmlDocDumpMemory(doc, &buf_out, &len_out);
-#if 0
-    printf("%*s", len_out, buf_out);
-#endif
-
-
-/* YAZ_HAVE_XML2 */
-#endif
-}
-
-int main(int argc, char **argv)
-{
-    YAZ_CHECK_INIT(argc, argv);
-#if YAZ_HAVE_XML2
-    LIBXML_TEST_VERSION;
-#endif
-    tst();
-    YAZ_CHECK_TERM;
-}
-
-
-/*
- * Local variables:
- * c-basic-offset: 4
- * c-file-style: "Stroustrup"
- * indent-tabs-mode: nil
- * End:
- * vim: shiftwidth=4 tabstop=8 expandtab
- */
-