[Lldb-commits] [lldb] r245691 - Increase timeout in TestExpressionInSyscall
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 21 03:52:03 PDT 2015
Author: labath
Date: Fri Aug 21 05:52:02 2015
New Revision: 245691
URL: http://llvm.org/viewvc/llvm-project?rev=245691&view=rev
Log:
Increase timeout in TestExpressionInSyscall
test times out on the windows->android buildbot (probably due to android emulator being slow)
Modified:
lldb/trunk/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
Modified: lldb/trunk/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py?rev=245691&r1=245690&r2=245691&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py (original)
+++ lldb/trunk/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py Fri Aug 21 05:52:02 2015
@@ -60,7 +60,7 @@ class ExprSyscallTestCase(TestBase):
# send the process a signal
process.SendAsyncInterrupt()
- while listener.WaitForEvent(1, event):
+ while listener.WaitForEvent(2, event):
pass
# as a result the process should stop
More information about the lldb-commits
mailing list