Skip to content

Commit

Permalink
bpo-36342: Fix test_multiprocessing in test_venv (pythonGH-12513)
Browse files Browse the repository at this point in the history
when platform lacks a functioning sem_open implementation



https://bugs.python.org/issue36342
  • Loading branch information
xdegaye authored and miss-islington committed May 30, 2019
1 parent 2f5b9dc commit 5437ccc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Lib/test/test_venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
import sys
import tempfile
from test.support import (captured_stdout, captured_stderr, requires_zlib,
can_symlink, EnvironmentVarGuard, rmtree)
can_symlink, EnvironmentVarGuard, rmtree,
import_module)
import threading
import unittest
import venv
Expand Down Expand Up @@ -315,6 +316,10 @@ def test_multiprocessing(self):
"""
Test that the multiprocessing is able to spawn.
"""
# Issue bpo-36342: Instanciation of a Pool object imports the
# multiprocessing.synchronize module. Skip the test if this module
# cannot be imported.
import_module('multiprocessing.synchronize')
rmtree(self.env_dir)
self.run_with_capture(venv.create, self.env_dir)
envpy = os.path.join(os.path.realpath(self.env_dir),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Fix test_multiprocessing in test_venv if platform lacks functioning sem_open.

0 comments on commit 5437ccc

Please sign in to comment.