chromium/v8/test/unittests/wasm/wasm-code-pointer-table-unittest.cc

// Copyright 2024 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/wasm/wasm-code-pointer-table-inl.h"
#include "test/unittests/test-utils.h"

namespace v8::internal::wasm {

namespace {

template <typename FunctionType>
class BackgroundThread final : public v8::base::Thread {};

template <typename FunctionType>
BackgroundThread(FunctionType) -> BackgroundThread<FunctionType>;

}  // anonymous namespace

class WasmCodePointerTableTest : public TestWithPlatform {};

TEST_F(WasmCodePointerTableTest, ConcurrentSweep) {}

}  // namespace v8::internal::wasm