blob: a9cbbb46a037bdbc147e898a0a145669e648ca28 [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
Florent Xicluna3f5d1462010-03-21 11:50:17 +00008from test import test_support
Fred Drakebb7c1442004-06-15 15:49:46 +00009import distutils.tests
Fred Drakebb7c1442004-06-15 15:49:46 +000010
11
12def test_main():
Florent Xicluna3f5d1462010-03-21 11:50:17 +000013 test_support.run_unittest(distutils.tests.test_suite())
14 test_support.reap_children()
Fred Drakebb7c1442004-06-15 15:49:46 +000015
16
17if __name__ == "__main__":
18 test_main()