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 / test_distutils.py
CommitLineData
86530b38
AT
1"""Tests for distutils.
2
3The tests for distutils are defined in the distutils.tests package;
4the test_suite() function there returns a test suite that's ready to
5be run.
6"""
7
8import distutils.tests
9import test.test_support
10
11
12def test_main():
13 test.test_support.run_unittest(distutils.tests.test_suite())
14
15
16if __name__ == "__main__":
17 test_main()