From 2c368cf64bc42f2284c2b90855b7b73e3e33495d Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 3 May 2017 18:12:16 +0530 Subject: [PATCH] grrr --- src/calibre/utils/test_lock.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/calibre/utils/test_lock.py b/src/calibre/utils/test_lock.py index 30f3fd2699..3b3775f483 100644 --- a/src/calibre/utils/test_lock.py +++ b/src/calibre/utils/test_lock.py @@ -70,6 +70,7 @@ class IPCLockTest(unittest.TestCase): def test_exclusive_file_other_process(self): child = run_worker('calibre.utils.test_lock', 'other1') + print(1111111, child) while child.poll() is None: if os.path.exists('ready'): break @@ -87,6 +88,7 @@ def other1(): e = ExclusiveFile('test') with e: os.mkdir('ready') + print(22222222) time.sleep(30)