[Lldb-commits] [lldb] r259878 - Bump up the packet timeout for gdbremote tests

Pavel Labath via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 5 03:17:22 PST 2016


Author: labath
Date: Fri Feb  5 05:17:22 2016
New Revision: 259878

URL: http://llvm.org/viewvc/llvm-project?rev=259878&view=rev
Log:
Bump up the packet timeout for gdbremote tests

Log confirmed that the we are sometimes timing out on the receive, even though the server is
sending the correct packets.

Modified:
    lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py

Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py?rev=259878&r1=259877&r2=259878&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py Fri Feb  5 05:17:22 2016
@@ -26,7 +26,7 @@ import logging
 
 class GdbRemoteTestCaseBase(TestBase):
 
-    _TIMEOUT_SECONDS = 5
+    _TIMEOUT_SECONDS = 7
 
     _GDBREMOTE_KILL_PACKET = "$k#6b"
 




More information about the lldb-commits mailing list