[Lldb-commits] [lldb] r266058 - Bump up timeout in TestGdbRemoteProcessInfo
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 12 04:59:44 PDT 2016
Author: labath
Date: Tue Apr 12 06:59:41 2016
New Revision: 266058
URL: http://llvm.org/viewvc/llvm-project?rev=266058&view=rev
Log:
Bump up timeout in TestGdbRemoteProcessInfo
the process info packet is slow, and sometimes it does not arrive on time when run on the android
emulator.
Modified:
lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py
Modified: lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py?rev=266058&r1=266057&r2=266058&view=diff
==============================================================================
--- lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py (original)
+++ lldb/trunk/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py Tue Apr 12 06:59:41 2016
@@ -52,7 +52,7 @@ class TestGdbRemoteProcessInfo(gdbremote
self.add_process_info_collection_packets()
# Run the stream
- context = self.expect_gdbremote_sequence()
+ context = self.expect_gdbremote_sequence(timeout_seconds = 8)
self.assertIsNotNone(context)
# Gather process info response
More information about the lldb-commits
mailing list