mirror of
https://github.com/python/cpython.git
synced 2025-01-05 16:14:07 +08:00
13 lines
282 B
Python
13 lines
282 B
Python
import unittest
|
|
import test._test_multiprocessing
|
|
|
|
from test import support
|
|
|
|
if support.PGO:
|
|
raise unittest.SkipTest("test is not helpful for PGO")
|
|
|
|
test._test_multiprocessing.install_tests_in_module_dict(globals(), 'forkserver')
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|