Skip to content

Commit

Permalink
bpo-33725: skip test_multiprocessing_fork on macOS (GH-11043)
Browse files Browse the repository at this point in the history
(cherry picked from commit ac218bc)

Co-authored-by: Ned Deily <nad@python.org>
  • Loading branch information
miss-islington and ned-deily committed Dec 9, 2018
1 parent 23a98ab commit df5d884
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Lib/test/test_multiprocessing_fork.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import unittest
import test._test_multiprocessing

import sys
from test import support

if support.PGO:
raise unittest.SkipTest("test is not helpful for PGO")

if sys.platform == 'darwin':
raise unittest.SkipTest("test may crash on macOS (bpo-33725)")

test._test_multiprocessing.install_tests_in_module_dict(globals(), 'fork')

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
test_multiprocessing_fork may crash on recent versions of macOS. Until the
issue is resolved, skip the test on macOS.

0 comments on commit df5d884

Please sign in to comment.