[Lldb-commits] [lldb] r316391 - Use ipv4 localhost address in lldb-server tests
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 23 16:15:37 PDT 2017
Author: labath
Date: Mon Oct 23 16:15:37 2017
New Revision: 316391
URL: http://llvm.org/viewvc/llvm-project?rev=316391&view=rev
Log:
Use ipv4 localhost address in lldb-server tests
Since the ipv6 patch, we've experienced occasional flakyness in
lldb-server tests. This was due to the fact that lldb-server was trying
to listen on both v4 and v6 localhost sockets (and consider it a success
if at least one of them succeeded), while the test framework was only
trying to connect to the v4 one.
This change makes sure lldb-server only listens on the v4 socket.
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=316391&r1=316390&r2=316391&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 Mon Oct 23 16:15:37 2017
@@ -369,7 +369,7 @@ class GdbRemoteTestCaseBase(TestBase):
["*:{}".format(self.port)]
else:
commandline_args = self.debug_monitor_extra_args + \
- ["localhost:{}".format(self.port)]
+ ["127.0.0.1:{}".format(self.port)]
if attach_pid:
commandline_args += ["--attach=%d" % attach_pid]
More information about the lldb-commits
mailing list