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
cf645db8
Commit
cf645db8
authored
Apr 16, 2011
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Plain Diff
Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition.
parents
a4eb194e
f25a8de8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
Lib/test/test_multiprocessing.py
Lib/test/test_multiprocessing.py
+7
-1
Misc/NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_multiprocessing.py
View file @
cf645db8
...
...
@@ -769,7 +769,13 @@ class _TestCondition(BaseTestCase):
cond
.
release
()
# check they have all woken
time
.
sleep
(
DELTA
)
for
i
in
range
(
10
):
try
:
if
get_value
(
woken
)
==
6
:
break
except
NotImplementedError
:
break
time
.
sleep
(
DELTA
)
self
.
assertReturnsIfImplemented
(
6
,
get_value
,
woken
)
# check state is not mucked up
...
...
Misc/NEWS
View file @
cf645db8
...
...
@@ -475,6 +475,8 @@ Extensions
Tests
-----
- Issue #11790: Fix sporadic failures in test_multiprocessing.WithProcessesTestCondition.
- Fix possible "file already exists" error when running the tests in parallel.
- Issue #11719: Fix message about unexpected test_msilib skip on non-Windows
...
...
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