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 
     10 test._test_multiprocessing.install_tests_in_module_dict(globals(), 'fork')
     11 
     12 if __name__ == '__main__':
     13     unittest.main()
     14