mirror of
https://github.com/python/cpython.git
synced 2025-07-17 00:05:20 +00:00
16 lines
384 B
Python
16 lines
384 B
Python
import unittest
|
|
import test._test_multiprocessing
|
|
|
|
import sys
|
|
from test import support
|
|
|
|
if support.PGO:
|
|
raise unittest.SkipTest("test is not helpful for PGO")
|
|
|
|
if sys.platform == 'darwin':
|
|
raise unittest.SkipTest("test may crash on macOS (bpo-33725)")
|
|
|
|
test._test_multiprocessing.install_tests_in_module_dict(globals(), 'fork')
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|