diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2019-04-15 15:52:32 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2019-04-15 15:52:32 +0300 |
commit | b3179538efa7256043fae6f7be41b72a9e7ab229 (patch) | |
tree | 532a40c1d556d6b3b319ecb5f4458ee9973911e1 | |
parent | 0f8a602c3c67fb55d992898cc7a146b9232572bd (diff) | |
download | unit-b3179538efa7256043fae6f7be41b72a9e7ab229.tar.gz unit-b3179538efa7256043fae6f7be41b72a9e7ab229.tar.bz2 |
Tests: wait more time on Unit closing.
-rw-r--r-- | test/unit/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/main.py b/test/unit/main.py index bd91026f..b2fa2950 100644 --- a/test/unit/main.py +++ b/test/unit/main.py @@ -219,7 +219,7 @@ class TestUnit(unittest.TestCase): subprocess.call(['kill', '-s', 'QUIT', pid]) - for i in range(50): + for i in range(150): if not os.path.exists(self.testdir + '/unit.pid'): break time.sleep(0.1) |