2004-06-15 12:49:46 -03: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.
|
|
|
|
"""
|
|
|
|
|
2010-03-21 08:50:17 -03:00
|
|
|
from test import test_support
|
2004-06-15 12:49:46 -03:00
|
|
|
import distutils.tests
|
|
|
|
|
|
|
|
|
|
|
|
def test_main():
|
2010-03-21 08:50:17 -03:00
|
|
|
test_support.run_unittest(distutils.tests.test_suite())
|
|
|
|
test_support.reap_children()
|
2004-06-15 12:49:46 -03:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|