blob: d1744138497e64368f9d506d9f6cb4034fcbb64d [file] [log] [blame]
Takashi Nakamotof64c2d52011-08-29 03:59:36 +09001--- misc/libxml2-2.7.6//runtest.c 2011-08-29 02:41:07.876872800 +0900
2+++ misc/build/libxml2-2.7.6/runtest.c 2011-08-29 02:47:09.068970800 +0900
3@@ -2728,7 +2728,7 @@
4 "file:///path/to/a%20b.html",
5 "/path/to/a b.html",
6 "/path/to/a%20b.html",
7- "urip://example.com/résumé.html",
8+ "urip://example.com/r" "\xe9" "sum" "\xe9" ".html",
9 "urip://example.com/test?a=1&b=2%263&c=4#foo",
10 NULL
11 };
12--- misc/libxml2-2.7.6//testapi.c 2011-08-29 02:41:28.088620300 +0900
13+++ misc/build/libxml2-2.7.6/testapi.c 2011-08-29 02:46:32.966174100 +0900
14@@ -291,7 +291,7 @@
15 static xmlChar gen_xmlChar(int no, int nr ATTRIBUTE_UNUSED) {
16 if (no == 0) return('a');
17 if (no == 1) return(' ');
18- if (no == 2) return((xmlChar) 'ø');
19+ if (no == 2) return((xmlChar) '\xf8');
20 return(0);
21 }
22
23@@ -399,7 +399,7 @@
24 static xmlChar *gen_const_xmlChar_ptr(int no, int nr ATTRIBUTE_UNUSED) {
25 if (no == 0) return((xmlChar *) "foo");
26 if (no == 1) return((xmlChar *) "<foo/>");
27- if (no == 2) return((xmlChar *) "nøne");
28+ if (no == 2) return((xmlChar *) "n" "\xf8" "ne");
29 if (no == 3) return((xmlChar *) " 2ab ");
30 return(NULL);
31 }
32