Add '+' sign at the end of echo package
authorYing Chen <chying@google.com>
Fri, 29 May 2015 01:02:07 +0000 (01:02 +0000)
committerYing Chen <chying@google.com>
Fri, 29 May 2015 01:02:07 +0000 (01:02 +0000)
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

llvm-svn: 238535

lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp

index 37aed54..c61d9f4 100644 (file)
@@ -917,7 +917,7 @@ GDBRemoteCommunicationServerCommon::Handle_qSupported (StringExtractorGDBRemote
     response.PutCString (";QStartNoAckMode+");
     response.PutCString (";QThreadSuffixSupported+");
     response.PutCString (";QListThreadsInStopReply+");
-    response.PutCString (";qEcho");
+    response.PutCString (";qEcho+");
 #if defined(__linux__)
     response.PutCString (";qXfer:auxv:read+");
 #endif