mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
0c4c56ff39
README.cosmo contains the necessary links.
12 lines
277 B
Python
12 lines
277 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(), 'spawn')
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|