diff options
author | Walter Erquinigo <a20012251@gmail.com> | 2021-03-30 17:53:57 -0700 |
---|---|---|
committer | Walter Erquinigo <a20012251@gmail.com> | 2021-03-30 18:03:02 -0700 |
commit | a4ee79c8ae5ca1bbfa8d78a2782918d1f23f15b2 (patch) | |
tree | ddb7d19df9f5c6ffb4beba38f3a8914b10f56a16 /lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp | |
parent | 3a83b8b2d29e020b8ccde42d0949db45c7eb356a (diff) | |
download | llvm-a4ee79c8ae5ca1bbfa8d78a2782918d1f23f15b2.zip llvm-a4ee79c8ae5ca1bbfa8d78a2782918d1f23f15b2.tar.gz llvm-a4ee79c8ae5ca1bbfa8d78a2782918d1f23f15b2.tar.bz2 |
Fix errors in 0b69756110db444282c40ea16929186b2910c3b1
Errors found in
https://lab.llvm.org/buildbot/#/builders/68/builds/9681/steps/6/logs/stdio
Diffstat (limited to 'lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp')
-rw-r--r-- | lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp b/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp index 0a9a42a..4eeec62 100644 --- a/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp +++ b/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp @@ -417,7 +417,7 @@ TEST_F(GDBRemoteCommunicationClientTest, SendTraceSupportedPacket) { HandlePacket(server, "jLLDBTraceSupported", R"({"type":"intel-pt"}])"); EXPECT_FALSE(result.get()); - ASSERT_STREQ(error_message.c_str(), "missing value at (root).description"); + ASSERT_STREQ(error_message.c_str(), "missing value at TraceSupportedResponse.description"); } // Error response |