Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / src / nas,5.n2.os.2 / lib / python / lib / python2.4 / test / xmltests.py
CommitLineData
86530b38
AT
1# Convenience test module to run all of the XML-related tests in the
2# standard library.
3
4import sys
5import test.test_support
6
7test.test_support.verbose = 0
8
9def runtest(name):
10 __import__(name)
11 module = sys.modules[name]
12 if hasattr(module, "test_main"):
13 module.test_main()
14
15runtest("test.test_minidom")
16runtest("test.test_pyexpat")
17runtest("test.test_sax")
18runtest("test.test_xmllib")
19runtest("test.test_xmlrpc")