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
c5393c64
Commit
c5393c64
authored
Jun 03, 2008
by
Benjamin Peterson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make test_mutex more elegant
parent
a2a89a87
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
18 deletions
+20
-18
Lib/test/test_mutex.py
Lib/test/test_mutex.py
+20
-18
No files found.
Lib/test/test_mutex.py
View file @
c5393c64
...
...
@@ -5,26 +5,28 @@ mutex = test.test_support.import_module("mutex", deprecated=True)
class
MutexTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
mutex
=
mutex
.
mutex
()
def
called_by_mutex
(
self
,
some_data
):
self
.
assert_
(
self
.
mutex
.
test
(),
"mutex not held"
)
# Nested locking
self
.
mutex
.
lock
(
self
.
called_by_mutex2
,
"eggs"
)
def
called_by_mutex2
(
self
,
some_data
):
self
.
assert_
(
self
.
ready_for_2
,
"called_by_mutex2 called too soon"
)
def
test_lock_and_unlock
(
self
):
self
.
read_for_2
=
False
self
.
mutex
.
lock
(
self
.
called_by_mutex
,
"spam"
)
self
.
ready_for_2
=
True
def
called_by_mutex
(
some_data
):
self
.
assertEqual
(
some_data
,
"spam"
)
self
.
assert_
(
m
.
test
(),
"mutex not held"
)
# Nested locking
m
.
lock
(
called_by_mutex2
,
"eggs"
)
def
called_by_mutex2
(
some_data
):
self
.
assertEquals
(
some_data
,
"eggs"
)
self
.
assert_
(
m
.
test
(),
"mutex not held"
)
self
.
assert_
(
ready_for_2
,
"called_by_mutex2 called too soon"
)
m
=
mutex
.
mutex
()
read_for_2
=
False
m
.
lock
(
called_by_mutex
,
"spam"
)
ready_for_2
=
True
# unlock both locks
self
.
mutex
.
unlock
()
self
.
mutex
.
unlock
()
self
.
failIf
(
self
.
mutex
.
test
(),
"mutex still held"
)
m
.
unlock
()
m
.
unlock
()
self
.
failIf
(
m
.
test
(),
"mutex still held"
)
def
test_main
():
test
.
test_support
.
run_unittest
(
MutexTest
)
...
...
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