llvm/llvm/unittests/ExecutionEngine/Orc/SymbolStringPoolTest.cpp

//===----- SymbolStringPoolTest.cpp - Unit tests for SymbolStringPool -----===//
//
// 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 "llvm/ExecutionEngine/Orc/SymbolStringPool.h"
#include "llvm/ExecutionEngine/Orc/DebugUtils.h"
#include "gtest/gtest.h"

usingnamespacellvm;
usingnamespacellvm::orc;

namespace llvm::orc {

class SymbolStringPoolTest : public testing::Test {};
} // namespace llvm::orc

namespace {

TEST_F(SymbolStringPoolTest, UniquingAndComparisons) {}

TEST_F(SymbolStringPoolTest, Dereference) {}

TEST_F(SymbolStringPoolTest, ClearDeadEntries) {}

TEST_F(SymbolStringPoolTest, DebugDump) {}

TEST_F(SymbolStringPoolTest, NonOwningPointerBasics) {}

TEST_F(SymbolStringPoolTest, NonOwningPointerRefCounts) {}

TEST_F(SymbolStringPoolTest, SymbolStringPoolEntryUnsafe) {}

} // namespace