diff options
author | Michaël Zasso <targos@protonmail.com> | 2021-10-10 11:10:43 +0200 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2021-10-12 08:07:50 +0200 |
commit | 62719c5fd2ab7dee1ac4019c1715061d556ac457 (patch) | |
tree | 356fed3842e577ab58fd51d5cc02f071cf7ee216 /deps/v8/test/unittests/run-all-unittests.cc | |
parent | a784258444b052dfd31cca90db57b21dc38bb1eb (diff) | |
download | node-new-62719c5fd2ab7dee1ac4019c1715061d556ac457.tar.gz |
deps: update V8 to 9.5.172.19
PR-URL: https://github.com/nodejs/node/pull/40178
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'deps/v8/test/unittests/run-all-unittests.cc')
-rw-r--r-- | deps/v8/test/unittests/run-all-unittests.cc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/deps/v8/test/unittests/run-all-unittests.cc b/deps/v8/test/unittests/run-all-unittests.cc index 5ef3fe3afe..645dd5b060 100644 --- a/deps/v8/test/unittests/run-all-unittests.cc +++ b/deps/v8/test/unittests/run-all-unittests.cc @@ -2,9 +2,11 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include <memory> + #include "include/cppgc/platform.h" #include "include/libplatform/libplatform.h" -#include "include/v8.h" +#include "include/v8-initialization.h" #include "src/base/compiler-specific.h" #include "testing/gmock/include/gmock/gmock.h" @@ -19,6 +21,9 @@ class DefaultPlatformEnvironment final : public ::testing::Environment { 0, v8::platform::IdleTaskSupport::kEnabled); ASSERT_TRUE(platform_.get() != nullptr); v8::V8::InitializePlatform(platform_.get()); +#ifdef V8_VIRTUAL_MEMORY_CAGE + ASSERT_TRUE(v8::V8::InitializeVirtualMemoryCage()); +#endif cppgc::InitializeProcess(platform_->GetPageAllocator()); ASSERT_TRUE(v8::V8::Initialize()); } |