mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-28 04:41:59 +03:00
committed by
Nick Wellnhofer
parent
2c20c70cd8
commit
a2db8da1ac
@ -1,4 +1,6 @@
|
||||
#!/usr/bin/python -u
|
||||
from __future__ import print_function
|
||||
|
||||
import sys
|
||||
import libxml2
|
||||
# Memory debug specific
|
||||
@ -44,14 +46,14 @@ expect="""<?xml version="1.0"?>
|
||||
"""
|
||||
|
||||
if stringval != expect:
|
||||
print "Exslt processing failed"
|
||||
print("Exslt processing failed")
|
||||
sys.exit(255)
|
||||
|
||||
|
||||
# Memory debug specific
|
||||
libxslt.cleanup()
|
||||
if libxml2.debugMemory(1) == 0:
|
||||
print "OK"
|
||||
print("OK")
|
||||
else:
|
||||
print "Memory leak %d bytes" % (libxml2.debugMemory(1))
|
||||
print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
|
||||
libxml2.dumpMemory()
|
||||
sys.exit(255)
|
||||
|
Reference in New Issue
Block a user