aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
diff options
context:
space:
mode:
authorMuhammad Omair Javaid <omair.javaid@linaro.org>2021-06-24 22:30:06 +0000
committerMuhammad Omair Javaid <omair.javaid@linaro.org>2021-06-24 22:36:31 +0000
commit473a3a773ea565612e836ae6c2093178c5a9eb72 (patch)
treef9f02da59153e27c55ece3b79f7addfc810abe2d /lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
parentc4ca39e0f54ba81eefe8d48e25f7d71bbe49d952 (diff)
downloadllvm-473a3a773ea565612e836ae6c2093178c5a9eb72.zip
llvm-473a3a773ea565612e836ae6c2093178c5a9eb72.tar.gz
llvm-473a3a773ea565612e836ae6c2093178c5a9eb72.tar.bz2
Disable check_qmemtags unit tests
check_qmemtags tests are broken on Arm 32 bits. This patch disables these tests. Differential Revision: https://reviews.llvm.org/D95602
Diffstat (limited to 'lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp')
-rw-r--r--lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp b/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
index b9fc107..91e6345 100644
--- a/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
+++ b/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
@@ -465,7 +465,7 @@ TEST_F(GDBRemoteCommunicationClientTest, GetQOffsets) {
EXPECT_EQ(llvm::None, GetQOffsets("TextSeg=0x1234"));
EXPECT_EQ(llvm::None, GetQOffsets("TextSeg=12345678123456789"));
}
-
+#if 0
static void
check_qmemtags(TestClient &client, MockServer &server, size_t read_len,
const char *packet, llvm::StringRef response,
@@ -530,3 +530,4 @@ TEST_F(GDBRemoteCommunicationClientTest, ReadMemoryTags) {
check_qmemtags(client, server, 32, "qMemTags:def0,20:1", "m01020",
llvm::None);
}
+#endif