summaryrefslogtreecommitdiff
path: root/lldb/third_party
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2019-10-10 16:16:49 +0000
committerAdrian Prantl <aprantl@apple.com>2019-10-10 16:16:49 +0000
commita8419b1f2767c7fd5c0d0696b76d17efb2a5b418 (patch)
tree94cf2c999bbba4b56b64a1fbc7cbe61406e2681b /lldb/third_party
parent7a6d98325cd7463868472532391ad13122479380 (diff)
downloadllvm-a8419b1f2767c7fd5c0d0696b76d17efb2a5b418.tar.gz
Increase timeout in pexpect to lower chances of tests failing under ASAN.
If this doesn't actually work, I'll revert the change and just disable the remaining thee pexpect tests under asan. llvm-svn: 374375
Diffstat (limited to 'lldb/third_party')
-rw-r--r--lldb/third_party/Python/module/pexpect-4.6/pexpect/pty_spawn.py2
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 e0e2b54fd033..6b9ad3f63f7c 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: