blob: cd26b0a79597839e81d75765213710e7b7c9ecca (
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
|
import imp
import unittest
from test_support import TestFailed, run_unittest
class ImpLock(unittest.TestCase):
# XXX this test is woefully inadequate, please fix me
def testLock(self):
LOOPS = 50
for i in range(LOOPS):
imp.acquire_lock()
for i in range(LOOPS):
imp.release_lock()
for i in range(LOOPS):
try:
imp.release_lock()
except RuntimeError:
pass
else:
raise TestFailed, \
"release_lock() without lock should raise RuntimeError"
def test_main():
run_unittest(ImpLock)
if __name__ == "__main__":
test_main()
|