VirtualBox

source: vbox/trunk/src/libs/libxml2-2.13.2/python/tests/xpathns.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: 547 bytes
Line 
1#!/usr/bin/env python3
2#
3import setup_test
4import libxml2
5
6expect=' xmlns:a="urn:whatevar"'
7
8# Memory debug specific
9libxml2.debugMemory(1)
10
11d = libxml2.parseDoc("<a:a xmlns:a='urn:whatevar'/>")
12res=""
13for n in d.xpathEval("//namespace::*"):
14 res = res + n.serialize()
15del n
16d.freeDoc()
17
18if res != expect:
19 print("test5 failed: unexpected output")
20 print(res)
21del res
22del d
23# Memory debug specific
24libxml2.cleanupParser()
25
26if libxml2.debugMemory(1) == 0:
27 print("OK")
28else:
29 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