blob: 4e3e009d43bddab2c05366c5526e00890ce545ab [file] [log] [blame]
Georg Brandl15c5ce92007-03-07 09:09:40 +00001from test import test_support
Michael Foord35b37922010-03-25 23:56:33 +00002import unittest.test
Michael Foord5ffa3252010-03-07 22:04:55 +00003
Jim Fultonfafd8742004-08-28 15:22:12 +00004
5def test_main():
Michael Foord35b37922010-03-25 23:56:33 +00006 test_support.run_unittest(unittest.test.test_suite())
7 test_support.reap_children()
8
Jim Fultonfafd8742004-08-28 15:22:12 +00009
Georg Brandl15c5ce92007-03-07 09:09:40 +000010if __name__ == "__main__":
Tim Petersea5962f2007-03-12 18:07:52 +000011 test_main()