mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 10:01:49 +00:00

PR-URL: https://github.com/nodejs/node/pull/49639 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
72 lines
1.9 KiB
C++
72 lines
1.9 KiB
C++
// Copyright 2022 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 "include/v8-platform.h"
|
|
#include "src/init/v8.h"
|
|
#include "test/unittests/heap/heap-utils.h"
|
|
#include "test/unittests/test-utils.h"
|
|
#include "testing/gtest/include/gtest/gtest.h"
|
|
|
|
namespace v8 {
|
|
|
|
template <typename TMixin>
|
|
class WithSingleThreadedDefaultPlatformMixin : public TMixin {
|
|
public:
|
|
WithSingleThreadedDefaultPlatformMixin() {
|
|
platform_ = v8::platform::NewSingleThreadedDefaultPlatform();
|
|
CHECK_NOT_NULL(platform_.get());
|
|
i::V8::InitializePlatformForTesting(platform_.get());
|
|
v8::V8::Initialize();
|
|
}
|
|
|
|
~WithSingleThreadedDefaultPlatformMixin() override {
|
|
CHECK_NOT_NULL(platform_.get());
|
|
v8::V8::Dispose();
|
|
v8::V8::DisposePlatform();
|
|
}
|
|
|
|
v8::Platform* platform() const { return platform_.get(); }
|
|
|
|
private:
|
|
std::unique_ptr<v8::Platform> platform_;
|
|
};
|
|
|
|
class SingleThreadedDefaultPlatformTest
|
|
: public WithIsolateScopeMixin< //
|
|
WithIsolateMixin< //
|
|
WithSingleThreadedDefaultPlatformMixin< //
|
|
::testing::Test>>> {
|
|
public:
|
|
static void SetUpTestSuite() {
|
|
i::v8_flags.single_threaded = true;
|
|
i::FlagList::EnforceFlagImplications();
|
|
WithIsolateScopeMixin::SetUpTestSuite();
|
|
}
|
|
|
|
static void TearDownTestSuite() {
|
|
WithIsolateScopeMixin::TearDownTestSuite();
|
|
}
|
|
};
|
|
|
|
TEST_F(SingleThreadedDefaultPlatformTest, SingleThreadedDefaultPlatform) {
|
|
{
|
|
i::HandleScope scope(i_isolate());
|
|
v8::Local<Context> env = Context::New(isolate());
|
|
v8::Context::Scope context_scope(env);
|
|
|
|
RunJS(
|
|
"function f() {"
|
|
" for (let i = 0; i < 10; i++)"
|
|
" (new Array(10)).fill(0);"
|
|
" return 0;"
|
|
"}"
|
|
"f();");
|
|
}
|
|
|
|
InvokeMinorGC(i_isolate());
|
|
InvokeMemoryReducingMajorGCs(i_isolate());
|
|
}
|
|
|
|
} // namespace v8
|