Home | History | Annotate | Download | only in test
      1 import unittest
      2 import test._test_multiprocessing
      3 
      4 from test import support
      5 
      6 if support.PGO:
      7     raise unittest.SkipTest("test is not helpful for PGO")
      8 
      9 test._test_multiprocessing.install_tests_in_module_dict(globals(), 'spawn')
     10 
     11 if __name__ == '__main__':
     12     unittest.main()
     13