Staging
v0.5.1
https://github.com/python/cpython
Revision 061f132898d3232420db1c00a5adde13647d7e21 authored by Martin v. Löwis on 29 August 2004, 16:40:55 UTC, committed by Martin v. Löwis on 29 August 2004, 16:40:55 UTC
1 parent e064b41
Raw File
Tip revision: 061f132898d3232420db1c00a5adde13647d7e21 authored by Martin v. Löwis on 29 August 2004, 16:40:55 UTC
Patch #973204: Use -rpath instead of -R on Irix and Tru64.
Tip revision: 061f132
test_distutils.py
"""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
import test.test_support


def test_main():
    test.test_support.run_unittest(distutils.tests.test_suite())


if __name__ == "__main__":
    test_main()
back to top