VirtualBox

source: vbox/trunk/src/libs/libxml2-2.13.2/python/tests/reader8.py@ 105420

Last change on this file since 105420 was 105420, checked in by vboxsync, 7 months ago

libxml2-2.12.6: Applied and adjusted our libxml2 changes to 2.12.6. bugref:10730

  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 678 bytes
Line 
1#!/usr/bin/env python3
2#
3# this tests the entities substitutions with the XmlTextReader interface
4#
5import sys
6import setup_test
7import libxml2
8
9# Memory debug specific
10libxml2.debugMemory(1)
11
12#
13# Parse a document testing the Close() API
14#
15docstr="""<foo>
16<label>some text</label>
17<item>100</item>
18</foo>"""
19
20reader = libxml2.readerForDoc(docstr, "test1", None, 0)
21ret = reader.Read()
22ret = reader.Read()
23ret = reader.Close()
24
25if ret != 0:
26 print("Error closing the document test1")
27 sys.exit(1)
28
29del reader
30
31# Memory debug specific
32libxml2.cleanupParser()
33if libxml2.debugMemory(1) == 0:
34 print("OK")
35else:
36 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette