mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Adds test.support.PGO and skips tests that are not useful for PGO.
This commit is contained in:
parent
a571120410
commit
22d0698d3b
11 changed files with 39 additions and 5 deletions
|
@ -1,6 +1,11 @@
|
|||
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__':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue