summaryrefslogtreecommitdiff
path: root/python/tests
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-09-28 18:58:27 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-09-28 18:58:27 +0000
commit4432df239b7aba6bff86c838e0be11d08f283b76 (patch)
treea12cc42ee7a3e819404c2b8816386f320aab812c /python/tests
parent9ee35f36437073d952bc88fd64cf1618aad27c7b (diff)
downloadlibxml2-4432df239b7aba6bff86c838e0be11d08f283b76.tar.gz
cleanup, creating a new legacy.c module, made sure make tests ran in
* Makefile.am: cleanup, creating a new legacy.c module, made sure make tests ran in reduced conditions * SAX.c SAX2.c configure.in entities.c globals.c parser.c parserInternals.c tree.c valid.c xlink.c xmlIO.c xmlcatalog.c xmlmemory.c xpath.c xmlmemory.c include/libxml/xmlversion.h.in: increased the modularization, allow to configure out validation code and legacy code, added a configuration option --with-minimum compiling only the mandatory code which then shrink to 200KB. Daniel
Diffstat (limited to 'python/tests')
-rwxr-xr-xpython/tests/reader2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/tests/reader2.py b/python/tests/reader2.py
index e3252272..d122dca9 100755
--- a/python/tests/reader2.py
+++ b/python/tests/reader2.py
@@ -229,7 +229,7 @@ res=""
err=""
input = libxml2.inputBuffer(StringIO.StringIO(s))
-reader = input.newTextReader("test4")
+reader = input.newTextReader("test5")
reader.SetParserProp(libxml2.PARSER_VALIDATE,1)
while reader.Read() == 1:
res = res + "%s %s %d\n" % (reader.NodeType(),reader.Name(),reader.Depth())