Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
a6fba9b8
Commit
a6fba9b8
authored
Nov 26, 2017
by
xdegaye
Committed by
GitHub
Nov 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-32126: Skip asyncio test when sem_open() is not functional (GH-4559)
parent
4274609e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
Lib/test/test_asyncio/test_events.py
Lib/test/test_asyncio/test_events.py
+4
-0
Misc/NEWS.d/next/Tests/2017-11-24-18-15-12.bpo-32126.PLmNLn.rst
...EWS.d/next/Tests/2017-11-24-18-15-12.bpo-32126.PLmNLn.rst
+2
-0
No files found.
Lib/test/test_asyncio/test_events.py
View file @
a6fba9b8
...
...
@@ -2155,6 +2155,10 @@ else:
super
().
tearDown
()
def
test_get_event_loop_new_process
(
self
):
# Issue bpo-32126: The multiprocessing module used by
# ProcessPoolExecutor is not functional when the
# multiprocessing.synchronize module cannot be imported.
support
.
import_module
(
'multiprocessing.synchronize'
)
async
def
main
():
pool
=
concurrent
.
futures
.
ProcessPoolExecutor
()
result
=
await
self
.
loop
.
run_in_executor
(
...
...
Misc/NEWS.d/next/Tests/2017-11-24-18-15-12.bpo-32126.PLmNLn.rst
0 → 100644
View file @
a6fba9b8
Skip test_get_event_loop_new_process in test.test_asyncio.test_events when
sem_open() is not functional.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment