simplified test case XML config root element tags
authorMarc Cromme <marc@indexdata.dk>
Thu, 25 Oct 2007 08:42:21 +0000 (08:42 +0000)
committerMarc Cromme <marc@indexdata.dk>
Thu, 25 Oct 2007 08:42:21 +0000 (08:42 +0000)
test/tst_icu_I18N.c

index 08099e9..cbef9e8 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: tst_icu_I18N.c,v 1.7 2007-10-25 08:32:51 marc Exp $
+/* $Id: tst_icu_I18N.c,v 1.8 2007-10-25 08:42:21 marc Exp $
    Copyright (c) 2006-2007, Index Data.
 
    This file is part of Pazpar2.
@@ -493,13 +493,13 @@ void test_icu_I18N_chain(int argc, char **argv)
     struct icu_chain * chain = 0;
     
 
-    const char * xml_str = "<icu_chain>"
+    const char * xml_str = "<icu>"
         "<normalize rule=\"[:Control:] Any-Remove\"/>"
         "<tokenize rule=\"l\"/>"
         "<normalize rule=\"[[:WhiteSpace:][:Punctuation:]] Remove\"/>"
         "<display/>"
         "<casemap rule=\"l\"/>"
-        "</icu_chain>";
+        "</icu>";
 
     
     xmlDoc *doc = xmlParseMemory(xml_str, strlen(xml_str));
@@ -549,7 +549,7 @@ void test_bug_1140(void)
     UErrorCode status = U_ZERO_ERROR;
     struct icu_chain * chain = 0;
     
-    const char * xml_str = "<icu_chain>"
+    const char * xml_str = "<icu>"
 
         /* if the first rule is normalize instead. Then it works */
 #if 0
@@ -559,7 +559,7 @@ void test_bug_1140(void)
         "<normalize rule=\"[[:WhiteSpace:][:Punctuation:]] Remove\"/>"
         "<display/>"
         "<casemap rule=\"l\"/>"
-        "</icu_chain>";
+        "</icu>";
 
     
     xmlDoc *doc = xmlParseMemory(xml_str, strlen(xml_str));
@@ -610,10 +610,10 @@ void test_chain_empty_token(void)
     UErrorCode status = U_ZERO_ERROR;
     struct icu_chain * chain = 0;
 
-    const char * xml_str = "<icu_chain>"
+    const char * xml_str = "<icu>"
         "<tokenize rule=\"w\"/>"
         "<normalize rule=\"[[:WhiteSpace:][:Punctuation:]] Remove\"/>"
-        "</icu_chain>";
+        "</icu>";
     
     xmlDoc *doc = xmlParseMemory(xml_str, strlen(xml_str));
     xmlNode *xml_node = xmlDocGetRootElement(doc);