]> git.proxmox.com Git - mirror_edk2.git/blob - AppPkg/Applications/Python/Python-2.7.2/Lib/test/xmltests.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Lib / test / xmltests.py
1 # Convenience test module to run all of the XML-related tests in the
2 # standard library.
3
4 import sys
5 import test.test_support
6
7 test.test_support.verbose = 0
8
9 def runtest(name):
10 __import__(name)
11 module = sys.modules[name]
12 if hasattr(module, "test_main"):
13 module.test_main()
14
15 runtest("test.test_minidom")
16 runtest("test.test_pyexpat")
17 runtest("test.test_sax")
18 runtest("test.test_xml_etree")
19 runtest("test.test_xml_etree_c")
20 runtest("test.test_xmllib")
21 runtest("test.test_xmlrpc")