1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-22 04:01:59 +03:00

change a small bit in the way valididy error messages get initialized

* parserInternals.c: change a small bit in the way valididy
  error messages get initialized
* python/TODO python/libxml.c python/libxml2-python-api.xml
  python/libxml2class.txt python/libxml_wrap.h python/types.c:
  added some memory debugging to track leaks at the libxml2 level
* python/tests/*.py: changed all tests to check for leaks,
  there is just one left in XPath extension registrations.
daniel
This commit is contained in:
Daniel Veillard
2002-02-03 20:13:06 +00:00
parent 26f1dcc5bd
commit 4e1b26cfeb
15 changed files with 247 additions and 18 deletions

View File

@ -6,6 +6,9 @@
import sys
import libxml2
# Memory debug specific
libxml2.debugMemory(1)
expect='--> warning: --> failed to load external entity "missing.xml"\n'
err=""
def callback(ctx, str):
@ -27,4 +30,10 @@ while i > 0:
err = ""
i = i - 1
print "OK"
# Memory debug specific
libxml2.cleanupParser()
if libxml2.debugMemory(1) == 0:
print "OK"
else:
print "Memory leak %d bytes" % (libxml2.debugMemory(1))
libxml2.dumpMemory()

View File

@ -2,6 +2,9 @@
import sys
import libxml2
# Memory debug specific
libxml2.debugMemory(1)
ctxt = libxml2.createPushParser(None, "<foo", 4, "test.xml")
ctxt.parseChunk("/>", 2, 1)
doc = ctxt.doc()
@ -22,4 +25,11 @@ while i > 0:
doc.freeDoc()
i = i -1
ctxt=None
print "OK"
# Memory debug specific
libxml2.cleanupParser()
if libxml2.debugMemory(1) == 0:
print "OK"
else:
print "Memory leak %d bytes" % (libxml2.debugMemory(1))
libxml2.dumpMemory()

View File

@ -2,6 +2,9 @@
import sys
import libxml2
# Memory debug specific
libxml2.debugMemory(1)
doc = libxml2.parseFile("tst.xml")
if doc.name != "tst.xml":
print "doc.name failed"
@ -15,4 +18,11 @@ if child.name != "foo":
print "child.name failed"
sys.exit(1)
doc.freeDoc()
print "OK"
# Memory debug specific
libxml2.cleanupParser()
if libxml2.debugMemory(1) == 0:
print "OK"
else:
print "Memory leak %d bytes" % (libxml2.debugMemory(1))
libxml2.dumpMemory()

View File

@ -2,6 +2,10 @@
import sys
import libxml2
#memory debug specific
libxml2.debugMemory(1)
def foo(x):
return x + 1
@ -35,4 +39,12 @@ while i > 0:
sys.exit(1)
i = i - 1
doc.freeDoc()
print "OK"
del ctxt
#memory debug specific
libxml2.cleanupParser()
if libxml2.debugMemory(1) == 0:
print "OK"
else:
print "Memory leak %d bytes" % (libxml2.debugMemory(1))
libxml2.dumpMemory()

View File

@ -2,6 +2,9 @@
import sys
import libxml2
# Memory debug specific
libxml2.debugMemory(1)
ctxt = libxml2.createFileParserCtxt("valid.xml")
ctxt.validate(1)
ctxt.parseDocument()
@ -68,5 +71,12 @@ while i > 0:
print "validity check failed"
sys.exit(1)
i = i - 1
del ctxt
print "OK"
# Memory debug specific
libxml2.cleanupParser()
if libxml2.debugMemory(1) == 0:
print "OK"
else:
print "Memory leak %d bytes" % (libxml2.debugMemory(1))
libxml2.dumpMemory()

View File

@ -6,6 +6,9 @@
import sys
import libxml2
# Memory debug specific
libxml2.debugMemory(1)
doc = libxml2.parseFile("tst.xml")
if doc.name != "tst.xml":
print "doc.name error"
@ -27,4 +30,12 @@ while i > 0:
res = ctxt.xpathEval("//*")
doc.freeDoc()
i = i -1
print "OK"
del ctxt
# Memory debug specific
libxml2.cleanupParser()
if libxml2.debugMemory(1) == 0:
print "OK"
else:
print "Memory leak %d bytes" % (libxml2.debugMemory(1))
libxml2.dumpMemory()

View File

@ -2,6 +2,9 @@
import sys
import libxml2
# Memory debug specific
libxml2.debugMemory(1)
def foo(x):
return x + 1
@ -35,4 +38,12 @@ while i > 0:
sys.exit(1)
i = i - 1
doc.freeDoc()
print "OK"
del ctxt
# Memory debug specific
libxml2.cleanupParser()
if libxml2.debugMemory(1) == 0:
print "OK"
else:
print "Memory leak %d bytes" % (libxml2.debugMemory(1))
libxml2.dumpMemory()