summaryrefslogtreecommitdiffstats
path: root/AppPkg/Applications/Python/Python-2.7.2/Lib/test/test_unittest.py
blob: 59a7bcc14306d5e07be8201f3853cf3b352e61c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import unittest.test

from test import test_support


def test_main():
    test_support.run_unittest(unittest.test.suite())
    test_support.reap_children()


if __name__ == "__main__":
    test_main()