[Lldb-commits] [lldb] r238535 - Add '+' sign at the end of echo package

Ying Chen chying at google.com
Thu May 28 18:02:08 PDT 2015


Author: chying
Date: Thu May 28 20:02:07 2015
New Revision: 238535

URL: http://llvm.org/viewvc/llvm-project?rev=238535&view=rev
Log:
Add '+' sign at the end of echo package

Summary:
-Fix lldb test failures introduced by r238530
-This fix TestGdbRemoteAuxvSupport.py and TestLldbGdbServer.py

Test Plan:
./dotest -p TestGdbRemoteAuxvSupport.py
./dotest -p TestLldbGdbServer.py

Reviewers: clayborg, chaoren, vharron

Subscribers: lldb-commits

Differential Revision: http://reviews.llvm.org/D10116

Modified:
    lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp

Modified: lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp?rev=238535&r1=238534&r2=238535&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp Thu May 28 20:02:07 2015
@@ -917,7 +917,7 @@ GDBRemoteCommunicationServerCommon::Hand
     response.PutCString (";QStartNoAckMode+");
     response.PutCString (";QThreadSuffixSupported+");
     response.PutCString (";QListThreadsInStopReply+");
-    response.PutCString (";qEcho");
+    response.PutCString (";qEcho+");
 #if defined(__linux__)
     response.PutCString (";qXfer:auxv:read+");
 #endif





More information about the lldb-commits mailing list