//===-- MemoryTagMapTest.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 "lldb/Target/MemoryTagMap.h" #include "Plugins/Process/Utility/MemoryTagManagerAArch64MTE.h" #include "gmock/gmock.h" #include "gtest/gtest.h" #include <optional> usingnamespacelldb_private; usingnamespacelldb; // In these tests we use the AArch64 MTE tag manager because it is the only // implementation of a memory tag manager. MemoryTagMap itself is generic. TEST(MemoryTagMapTest, EmptyTagMap) { … } TEST(MemoryTagMapTest, GetTags) { … }