v8/test/unittests/heap/local-heap-unittest.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
864 B
C++
Raw Normal View History

// Copyright 2020 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/heap/local-heap.h"
#include "src/heap/heap.h"
#include "test/unittests/test-utils.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace v8 {
namespace internal {
using LocalHeapTest = TestWithIsolate;
TEST_F(LocalHeapTest, Initialize) {
Heap* heap = i_isolate()->heap();
{
LocalHeap lh1(heap);
CHECK(heap->ContainsLocalHeap(&lh1));
LocalHeap lh2(heap);
CHECK(heap->ContainsLocalHeap(&lh2));
{
LocalHeap lh3(heap);
CHECK(heap->ContainsLocalHeap(&lh3));
}
CHECK(heap->ContainsLocalHeap(&lh1));
CHECK(heap->ContainsLocalHeap(&lh2));
}
CHECK(!heap->ContainsAnyLocalHeap());
}
} // namespace internal
} // namespace v8