diff options
author | eleviant <56861949+eleviant@users.noreply.github.com> | 2025-06-22 18:59:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-22 18:59:08 +0200 |
commit | 80b9fcf8fdf2a44da291b41d9244aa99e867f26c (patch) | |
tree | 166bdae54910a86d39a1106286e865da56ecae1a /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | |
parent | ee414e35047c588daba1ee62e8291ea171700f43 (diff) | |
download | llvm-80b9fcf8fdf2a44da291b41d9244aa99e867f26c.zip llvm-80b9fcf8fdf2a44da291b41d9244aa99e867f26c.tar.gz llvm-80b9fcf8fdf2a44da291b41d9244aa99e867f26c.tar.bz2 |
Revert "[lldb] Fix qEcho message handling (#145072)" (#145241)
Temporarily revert commit e066f35c6981c720e3a7e5883efc40c861b3b7ee,
because lldb tests randomly hang after it's been pushed.
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp index f244f7a..2aea7c6 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp @@ -354,9 +354,8 @@ GDBRemoteCommunication::WaitForPacketNoLock(StringExtractorGDBRemote &packet, disconnected = true; Disconnect(); } - } else { - timed_out = true; } + timed_out = true; break; case eConnectionStatusSuccess: // printf ("status = success but error = %s\n", |