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.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_multiprocessing_fork.py b/Lib/test/test_multiprocessing_fork.py
index daadcd3cc3..5000edb7c5 100644
--- a/Lib/test/test_multiprocessing_fork.py
+++ b/Lib/test/test_multiprocessing_fork.py
@@ -7,6 +7,9 @@ from test import support
if support.PGO:
raise unittest.SkipTest("test is not helpful for PGO")
+if sys.platform == "win32":
+ raise unittest.SkipTest("fork is not available on Windows")
+
if sys.platform == 'darwin':
raise unittest.SkipTest("test may crash on macOS (bpo-33725)")