//===-- GDBRemoteCommunicationTest.cpp ------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "GDBRemoteTestUtils.h" #include "llvm/Testing/Support/Error.h" usingnamespacelldb_private::process_gdb_remote; usingnamespacelldb_private; usingnamespacelldb; PacketResult; namespace { class TestClient : public GDBRemoteCommunication { … }; class GDBRemoteCommunicationTest : public GDBRemoteTest { … }; } // end anonymous namespace // Test that we can decode packets correctly. In particular, verify that // checksum calculation works. TEST_F(GDBRemoteCommunicationTest, ReadPacket) { … }