blob: 4e3e009d43bddab2c05366c5526e00890ce545ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from test import test_support
import unittest.test
def test_main():
test_support.run_unittest(unittest.test.test_suite())
test_support.reap_children()
if __name__ == "__main__":
test_main()
|