blob: 2d871d36bd31a1d6ba0d207810fa13c0213390e2 [file] [log] [blame]
Fred Drakebb7c1442004-06-15 15:49:46 +00001"""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())
Antoine Pitroucb170102009-10-27 20:20:41 +000014 test.test_support.reap_children()
Fred Drakebb7c1442004-06-15 15:49:46 +000015
16
17if __name__ == "__main__":
18 test_main()