diff options
author | Ying Chen <chying@google.com> | 2015-05-29 01:02:07 +0000 |
---|---|---|
committer | Ying Chen <chying@google.com> | 2015-05-29 01:02:07 +0000 |
commit | 5340683e7aa7474cf77cac451d584a8fcef083c6 (patch) | |
tree | c536077b835094ba21806559d5f22987e3e77653 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | |
parent | d8dc2acda20973230cddaa119e9368acd54bfe88 (diff) | |
download | bcm5719-llvm-5340683e7aa7474cf77cac451d584a8fcef083c6.tar.gz bcm5719-llvm-5340683e7aa7474cf77cac451d584a8fcef083c6.zip |
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
llvm-svn: 238535
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp index 37aed54abdc..c61d9f4f130 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp @@ -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 |