Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
c5393c64
Kaydet (Commit)
c5393c64
authored
Haz 03, 2008
tarafından
Benjamin Peterson
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
make test_mutex more elegant
üst
a2a89a87
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
18 deletions
+20
-18
test_mutex.py
Lib/test/test_mutex.py
+20
-18
No files found.
Lib/test/test_mutex.py
Dosyayı görüntüle @
c5393c64
...
@@ -5,26 +5,28 @@ mutex = test.test_support.import_module("mutex", deprecated=True)
...
@@ -5,26 +5,28 @@ mutex = test.test_support.import_module("mutex", deprecated=True)
class
MutexTest
(
unittest
.
TestCase
):
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
):
def
test_lock_and_unlock
(
self
):
self
.
read_for_2
=
False
self
.
mutex
.
lock
(
self
.
called_by_mutex
,
"spam"
)
def
called_by_mutex
(
some_data
):
self
.
ready_for_2
=
True
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
# unlock both locks
self
.
mutex
.
unlock
()
m
.
unlock
()
self
.
mutex
.
unlock
()
m
.
unlock
()
self
.
failIf
(
self
.
mutex
.
test
(),
"mutex still held"
)
self
.
failIf
(
m
.
test
(),
"mutex still held"
)
def
test_main
():
def
test_main
():
test
.
test_support
.
run_unittest
(
MutexTest
)
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