summaryrefslogtreecommitdiff
path: root/Lib/test/test_multiprocessing_fork.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_multiprocessing_fork.py')
-rw-r--r--Lib/test/test_multiprocessing_fork.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_multiprocessing_fork.py b/Lib/test/test_multiprocessing_fork.py
index 2bf4e75644..9f22500e8f 100644
--- a/Lib/test/test_multiprocessing_fork.py
+++ b/Lib/test/test_multiprocessing_fork.py
@@ -1,6 +1,12 @@
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(), 'fork')
if __name__ == '__main__':