mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 17:23:43 +00:00

PR-URL: https://github.com/nodejs/node/pull/47251 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Richard Lau <rlau@redhat.com>
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
// 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 "test/unittests/heap/cppgc/tests.h"
|
|
|
|
#include <memory>
|
|
|
|
#include "src/heap/cppgc/object-allocator.h"
|
|
#include "test/unittests/heap/cppgc/test-platform.h"
|
|
|
|
#if !CPPGC_IS_STANDALONE
|
|
#include "include/v8-initialization.h"
|
|
#include "src/init/v8.h"
|
|
#endif // !CPPGC_IS_STANDALONE
|
|
|
|
namespace cppgc {
|
|
namespace internal {
|
|
namespace testing {
|
|
|
|
// static
|
|
std::shared_ptr<TestPlatform> TestWithPlatform::platform_;
|
|
|
|
// static
|
|
void TestWithPlatform::SetUpTestSuite() {
|
|
platform_ = std::make_shared<TestPlatform>(
|
|
std::make_unique<DelegatingTracingController>());
|
|
|
|
#if !CPPGC_IS_STANDALONE
|
|
// For non-standalone builds, we need to initialize V8's platform so that it
|
|
// can be looked-up by trace-event.h.
|
|
i::V8::InitializePlatformForTesting(platform_->GetV8Platform());
|
|
v8::V8::Initialize();
|
|
#endif // !CPPGC_IS_STANDALONE
|
|
}
|
|
|
|
// static
|
|
void TestWithPlatform::TearDownTestSuite() {
|
|
#if !CPPGC_IS_STANDALONE
|
|
v8::V8::Dispose();
|
|
v8::V8::DisposePlatform();
|
|
#endif // !CPPGC_IS_STANDALONE
|
|
platform_.reset();
|
|
}
|
|
|
|
TestWithHeap::TestWithHeap()
|
|
: heap_(Heap::Create(platform_)),
|
|
allocation_handle_(heap_->GetAllocationHandle()) {}
|
|
|
|
TestWithHeap::~TestWithHeap() = default;
|
|
|
|
void TestWithHeap::ResetLinearAllocationBuffers() {
|
|
Heap::From(GetHeap())->object_allocator().ResetLinearAllocationBuffers();
|
|
}
|
|
|
|
TestSupportingAllocationOnly::TestSupportingAllocationOnly()
|
|
: no_gc_scope_(GetHeap()->GetHeapHandle()) {}
|
|
|
|
} // namespace testing
|
|
} // namespace internal
|
|
} // namespace cppgc
|