test_distutils.py revision ec1a0b3abe08fb9a3952e8f48231cda1f6d9b1f3
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
8from test import test_support
9import distutils.tests
10
11
12def test_main():
13    test_support.run_unittest(distutils.tests.test_suite())
14    test_support.reap_children()
15
16
17if __name__ == "__main__":
18    test_main()
19