예제 #1
0
파일: test_utils.py 프로젝트: linets/nova
 def lockb(wait):
     b = utils.InterProcessLock(os.path.join(tmpdir, 'b'))
     with b:
         wait.wait()
예제 #2
0
파일: test_utils.py 프로젝트: linets/nova
 def locka(wait):
     a = utils.InterProcessLock(os.path.join(tmpdir, 'a'))
     with a:
         wait.wait()
     self.completed = True