Skip to content

Commit

Permalink
Increase timeout in pexpect to lower chances of tests failing under A…
Browse files Browse the repository at this point in the history
…SAN.

If this doesn't actually work, I'll revert the change and just disable
the remaining thee pexpect tests under asan.

llvm-svn: 374375
  • Loading branch information
adrian-prantl committed Oct 10, 2019
1 parent 7a6d983 commit a8419b1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,7 @@ def terminate(self, force=False):
# 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:
Expand Down

0 comments on commit a8419b1

Please sign in to comment.