aboutsummaryrefslogtreecommitdiffstats
path: root/result/XInclude
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2000-11-12 15:56:56 +0000
committerDaniel Veillard <veillard@src.gnome.org>2000-11-12 15:56:56 +0000
commitbf43275dd1e31ee7542c37f1f7ce21e0ee9218ee (patch)
treea7922d9afb91ba81da63417c9437c126a2ad3252 /result/XInclude
parentc2def84b484f6706c2ad7d076a2f3e1c56f76b9f (diff)
downloadandroid_external_libxml2-bf43275dd1e31ee7542c37f1f7ce21e0ee9218ee.tar.gz
android_external_libxml2-bf43275dd1e31ee7542c37f1f7ce21e0ee9218ee.tar.bz2
android_external_libxml2-bf43275dd1e31ee7542c37f1f7ce21e0ee9218ee.zip
Bug fixes new Xinclude tests:
- nanoftp.c: fixed gcc 2.95 new warnings - SAX.c: fixed a stupid bug - tree.c: fixed a formatting problem when round-tripping from/to memory - xinclude.c: chased memleak, fixed a base problem - xpointer.c: added xmlXPtrBuildRangeNodeList(), finished ? xmlXPtrBuildNodeList() - TODO: updated - Makefile.am test/XInclude/docs test/XInclude/ents result/XInclude: adding a first small set of regression tests for XInclude Daniel
Diffstat (limited to 'result/XInclude')
-rw-r--r--result/XInclude/include.xml9
-rw-r--r--result/XInclude/nodes.xml5
-rw-r--r--result/XInclude/txtinclude.xml6
3 files changed, 20 insertions, 0 deletions
diff --git a/result/XInclude/include.xml b/result/XInclude/include.xml
new file mode 100644
index 00000000..e03b3859
--- /dev/null
+++ b/result/XInclude/include.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0"?>
+<x xmlns:xinclude="http://www.w3.org/1999/XML/xinclude">
+ <!-- Simple test of including another XML document -->
+ <doc>
+<p>something</p>
+<p>really</p>
+<p>simple</p>
+</doc>
+</x>
diff --git a/result/XInclude/nodes.xml b/result/XInclude/nodes.xml
new file mode 100644
index 00000000..5de8cec4
--- /dev/null
+++ b/result/XInclude/nodes.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<x xmlns:xinclude="http://www.w3.org/1999/XML/xinclude">
+ <!-- Simple test of including a set of nodes from an XML document -->
+ <p>something</p><p>really</p><p>simple</p>
+</x>
diff --git a/result/XInclude/txtinclude.xml b/result/XInclude/txtinclude.xml
new file mode 100644
index 00000000..b6c91c73
--- /dev/null
+++ b/result/XInclude/txtinclude.xml
@@ -0,0 +1,6 @@
+<?xml version="1.0"?>
+<x xmlns:xinclude="http://www.w3.org/1999/XML/xinclude">
+ <!-- Simple test of including another text document -->
+ this is some text in ASCII
+
+</x>