diff options
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 |