chromium/v8/test/unittests/sandbox/sandbox-unittest.cc

// Copyright 2021 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/sandbox/sandbox.h"

#include <vector>

#include "src/base/virtual-address-space.h"
#include "test/unittests/test-utils.h"

#ifdef V8_ENABLE_SANDBOX

namespace v8 {
namespace internal {

TEST(SandboxTest, Initialization) {}

TEST(SandboxTest, InitializationWithSize) {}

TEST(SandboxTest, PartiallyReservedSandbox) {}

TEST(SandboxTest, Contains) {}

TEST(SandboxTest, PageAllocation) {}

}  // namespace internal
}  // namespace v8

#endif  // V8_ENABLE_SANDBOX