blob: 6318c70a8edc5b7fcf762ea60d62c056a491fee2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import mutex
import unittest
import test.test_support
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
# unlock both locks
self.mutex.unlock()
self.mutex.unlock()
self.failIf(self.mutex.test(), "mutex still held")
def test_main():
test.test_support.run_unittest(MutexTest)
if __name__ == "__main__":
test_main()
|