llvm/llvm/unittests/ADT/ConcurrentHashtableTest.cpp

//===- ConcurrentHashtableTest.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 "llvm/ADT/ConcurrentHashtable.h"
#include "llvm/Support/Debug.h"
#include "llvm/Support/FormatVariadic.h"
#include "llvm/Support/Parallel.h"
#include "llvm/Support/PerThreadBumpPtrAllocator.h"
#include "gtest/gtest.h"
#include <limits>
#include <random>
#include <vector>
usingnamespacellvm;
usingnamespaceparallel;

namespace {
class String {};

TEST(ConcurrentHashTableTest, AddStringEntries) {}

TEST(ConcurrentHashTableTest, AddStringMultiplueEntries) {}

TEST(ConcurrentHashTableTest, AddStringMultiplueEntriesWithResize) {}

TEST(ConcurrentHashTableTest, AddStringEntriesParallel) {}

TEST(ConcurrentHashTableTest, AddStringEntriesParallelWithResize) {}

} // namespace