diff options
author | Todd Fiala <todd.fiala@gmail.com> | 2016-08-19 04:38:44 +0000 |
---|---|---|
committer | Todd Fiala <todd.fiala@gmail.com> | 2016-08-19 04:38:44 +0000 |
commit | 49178e5efee844ba2a9ea6b2877e8b0ceadc1a8b (patch) | |
tree | d0a5530fd8540f01499969f0743192d22d1d0c84 /lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp | |
parent | 759300192abe8e38e8a40ab95934ba602a78c252 (diff) | |
download | bcm5719-llvm-49178e5efee844ba2a9ea6b2877e8b0ceadc1a8b.tar.gz bcm5719-llvm-49178e5efee844ba2a9ea6b2877e8b0ceadc1a8b.zip |
fix broken gdb-remote gtest
This change adds the Process/gdb-remote gtests to the Xcode
build. It also adds a virtual method impl to the continuation
delegate that I added with the StructuredDataPlugin change.
llvm-svn: 279203
Diffstat (limited to 'lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp')
-rw-r--r-- | lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp b/lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp index ed5ec55067d..6b56e5c506e 100644 --- a/lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp +++ b/lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp @@ -52,6 +52,15 @@ struct MockDelegate : public GDBRemoteClientBase::ContinueDelegate { ++stop_reply_called; } + + bool + HandleAsyncStructuredData(const StructuredData::ObjectSP + &object_sp) + { + // TODO work in a test here after I fix the gtest breakage. + return true; + } + }; struct TestClient : public GDBRemoteClientBase |