2004-06-15 15:49:46 +00:00
|
|
|
"""Tests for distutils.
|
|
|
|
|
|
|
|
The tests for distutils are defined in the distutils.tests package;
|
|
|
|
the test_suite() function there returns a test suite that's ready to
|
|
|
|
be run.
|
|
|
|
"""
|
|
|
|
|
|
|
|
import distutils.tests
|
2008-05-20 21:35:26 +00:00
|
|
|
import test.support
|
2004-06-15 15:49:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_main():
|
2008-05-20 21:35:26 +00:00
|
|
|
test.support.run_unittest(distutils.tests.test_suite())
|
2009-10-27 20:21:45 +00:00
|
|
|
test.support.reap_children()
|
2004-06-15 15:49:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|