diff options
Diffstat (limited to 'lldb/third_party/Python/module')
-rw-r--r-- | lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py b/lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py index e0e2b54fd03..6b9ad3f63f7 100644 --- a/lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py +++ b/lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py @@ -640,7 +640,7 @@ class spawn(SpawnBase): # this to happen. I think isalive() reports True, but the # process is dead to the kernel. # Make one last attempt to see if the kernel is up to date. - time.sleep(self.delayafterterminate) + time.sleep(self.delayafterterminate * 10) if not self.isalive(): return True else: |