2014-09-04 08:44:03 +00:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2021-08-23 13:01:06 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2021-02-08 22:26:16 +00:00
|
|
|
#include "include/cppgc/platform.h"
|
2014-09-04 08:44:03 +00:00
|
|
|
#include "include/libplatform/libplatform.h"
|
2021-08-23 13:01:06 +00:00
|
|
|
#include "include/v8-initialization.h"
|
2014-09-04 08:44:03 +00:00
|
|
|
#include "src/base/compiler-specific.h"
|
2022-04-06 11:56:49 +00:00
|
|
|
#include "src/base/page-allocator.h"
|
2014-09-04 08:44:03 +00:00
|
|
|
#include "testing/gmock/include/gmock/gmock.h"
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2022-04-06 11:56:49 +00:00
|
|
|
class CppGCEnvironment final : public ::testing::Environment {
|
2014-09-04 08:44:03 +00:00
|
|
|
public:
|
2015-11-04 13:08:27 +00:00
|
|
|
void SetUp() override {
|
2022-04-06 11:56:49 +00:00
|
|
|
// Initialize the process for cppgc with an arbitrary page allocator. This
|
|
|
|
// has to survive as long as the process, so it's ok to leak the allocator
|
|
|
|
// here.
|
|
|
|
cppgc::InitializeProcess(new v8::base::PageAllocator());
|
2014-09-04 08:44:03 +00:00
|
|
|
}
|
|
|
|
|
2022-04-06 11:56:49 +00:00
|
|
|
void TearDown() override { cppgc::ShutdownProcess(); }
|
2014-09-04 08:44:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2017-01-05 12:22:26 +00:00
|
|
|
// Don't catch SEH exceptions and continue as the following tests might hang
|
|
|
|
// in an broken environment on windows.
|
|
|
|
testing::GTEST_FLAG(catch_exceptions) = false;
|
2020-01-20 19:16:44 +00:00
|
|
|
|
|
|
|
// Most V8 unit-tests are multi-threaded, so enable thread-safe death-tests.
|
|
|
|
testing::FLAGS_gtest_death_test_style = "threadsafe";
|
|
|
|
|
2014-09-04 08:44:03 +00:00
|
|
|
testing::InitGoogleMock(&argc, argv);
|
2022-04-06 11:56:49 +00:00
|
|
|
testing::AddGlobalTestEnvironment(new CppGCEnvironment);
|
2014-09-04 08:44:03 +00:00
|
|
|
v8::V8::SetFlagsFromCommandLine(&argc, argv, true);
|
2015-08-14 12:11:29 +00:00
|
|
|
v8::V8::InitializeExternalStartupData(argv[0]);
|
2019-05-15 21:33:32 +00:00
|
|
|
v8::V8::InitializeICUDefaultLocation(argv[0]);
|
2014-09-04 08:44:03 +00:00
|
|
|
return RUN_ALL_TESTS();
|
|
|
|
}
|