chromium/v8/test/unittests/objects/wasm-backing-store-unittest.cc

// Copyright 2019 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 <optional>

#include "src/base/platform/platform.h"
#include "src/objects/backing-store.h"
#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace v8 {
namespace internal {

class BackingStoreTest : public TestWithIsolate {};

TEST_F(BackingStoreTest, GrowWasmMemoryInPlace) {}

TEST_F(BackingStoreTest, GrowWasmMemoryInPlace_neg) {}

TEST_F(BackingStoreTest, GrowSharedWasmMemoryInPlace) {}

TEST_F(BackingStoreTest, CopyWasmMemory) {}

class GrowerThread : public base::Thread {};

TEST_F(BackingStoreTest, RacyGrowWasmMemoryInPlace) {}

}  // namespace internal
}  // namespace v8