blob: 5000edb7c5c299b6e77e3ca03e11961bf18d3332 [file] [log] [blame]
Richard Oudkerk84ed9a62013-08-14 15:35:41 +01001import unittest
2import test._test_multiprocessing
3
Ned Deilyac218bc2018-12-09 01:50:15 -05004import sys
Steve Dower22d06982016-09-06 19:38:15 -07005from test import support
6
7if support.PGO:
8 raise unittest.SkipTest("test is not helpful for PGO")
9
Pablo Galindoa932d0b2018-12-11 11:31:16 +000010if sys.platform == "win32":
11 raise unittest.SkipTest("fork is not available on Windows")
12
Ned Deilyac218bc2018-12-09 01:50:15 -050013if sys.platform == 'darwin':
14 raise unittest.SkipTest("test may crash on macOS (bpo-33725)")
Steve Dower22d06982016-09-06 19:38:15 -070015
Richard Oudkerk84ed9a62013-08-14 15:35:41 +010016test._test_multiprocessing.install_tests_in_module_dict(globals(), 'fork')
17
18if __name__ == '__main__':
19 unittest.main()